From c2db41cd775d53d02de997c98675da849e51cf0c Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 06 12월 2021 13:29:38 +0900 Subject: [PATCH] 연관이슈구분 기본값(다음이슈와관련됨)으로 추가되도록 수정 * 추후 '연관이슈만들기' 페이지에서 사용자가 직접 선택 할 수 있도록 수정 필요 --- src/main/webapp/scripts/components/api/api.service.js | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/main/webapp/scripts/components/api/api.service.js b/src/main/webapp/scripts/components/api/api.service.js index 9dd5537..11382e0 100644 --- a/src/main/webapp/scripts/components/api/api.service.js +++ b/src/main/webapp/scripts/components/api/api.service.js @@ -34,6 +34,24 @@ $log.debug("�씠�뒋 �쑀�삎 珥덇린媛� �닔�젙 寃곌낵 : ", response); return response; }); + }, + findApiOverlap : function (conditions) { + return $http.post("customFieldApiOverlap/find", conditions).then(function (response) { + $log.debug("�씠�뒋 �쑀�삎 以묐났媛� 議고쉶 寃곌낵 : ", response); + return response; + }); + }, + modifyApiOverlap : function (conditions) { + return $http.post("customFieldApiOverlap/modify", conditions).then(function (response) { + $log.debug("�씠�뒋 �쑀�삎 以묐났媛� �닔�젙 寃곌낵 : ", response); + return response; + }); + }, + findHistory : function (conditions) { + return $http.post("api/findHistory", conditions).then(function (response) { + $log.debug("API �씠�뒋 �벑濡� 湲곕줉 議고쉶 寃곌낵 : ", response); + return response; + }); } } } -- Gitblit v1.8.0