/** * Created by wisestone on 2018-10-17. */ 'use strict'; define(['app'], function (app) { app.factory("IssueHistory", ['$http', '$log', function ($http, $log) { return { find : function (conditions) { return $http.post("issueHistory/find", conditions).then(function (response) { $log.debug("이슈 기록 조회 : ", response); return response; }); } } } ]) });