/** * Created by wisestone on 2019-02-07. */ 'use strict'; define(['app'], function (app) { app.factory("IssueTableConfig", ['$http', '$log', function ($http, $log) { return { detail : function (conditions) { return $http.post("issueTableConfig/detail", conditions).then(function (response) { $log.debug("이슈 목록 테이블 설정 상세 조회 : ", response); return response; }); }, add : function (conditions) { return $http.post("issueTableConfig/add", conditions).then(function (response) { $log.debug("이슈 목록 테이블 설정 등록 : ", response); return response; }); } } } ]) });