OWL ITS + 탐지시스템(인터넷 진흥원)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 * Created by wisestone on 2018-05-30.
 */
'use strict';
 
define([
    'app'
], function (app) {
    app.factory("IssueTypeCustomField", ['$http', '$log', function ($http, $log) {
        return {
            find : function (conditions) {
                return $http.post("issueTypeCustomField/find", conditions).then(function (response) {
                    $log.debug("이슈 유형 사용자 정의 필드 목록 데이터 : ", response);
                    return response;
                });
            },
            findByIssueType : function (conditions) {
                return $http.post("issueTypeCustomField/findByIssueType", conditions).then(function (response) {
                    $log.debug("이슈 유형 별 사용자 정의 필드 목록 데이터 : ", response);
                    return response;
                });
            },
            modify : function (conditions) {
                return $http.post("issueTypeCustomField/modify", conditions).then(function (response) {
                    $log.debug("이슈 유형 사용자 정의 필드 수정 결과 : ", response);
                    return response;
                });
            }
        }
    }
    ]);
});