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
| /**
| * Created by wisestone on 2018-10-17.
| */
| 'use strict';
|
| define(['app'], function (app) {
| app.factory("IssueRelation", ['$http', '$log', function ($http, $log) {
| return {
| add : function (conditions) {
| return $http.post("issueRelation/add", conditions).then(function (response) {
| $log.debug("연관 이슈 입력 : ", response);
| return response;
| });
| },
| delete : function (conditions) {
| return $http.post("issueRelation/remove", conditions).then(function (response) {
| $log.debug("연관 이슈 삭제 : ", response);
| return response;
| });
| },
| find : function (conditions) {
| return $http.post("issueRelation/find", conditions).then(function (response) {
| $log.debug("연관 이슈 조회 : ", response);
| return response;
| });
| }
| }
| }
| ])
| });
|
|