From 145928e42a8ae18129fcbc720824a9e4f78999bd Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 17 12월 2021 17:23:03 +0900 Subject: [PATCH] 상위이슈의 상세페이지에서 하위이슈에 대한 활동내역 보여주기 --- src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js b/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js index 45f7c99..6603a78 100644 --- a/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js +++ b/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js @@ -17,7 +17,35 @@ $log.debug("�씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �벑濡� : ", response); return response; }); - } + }, + + relationAdd : function (conditions) { + return $http.post("issueTableConfig/relationAdd", conditions).then(function (response) { + $log.debug("�뿰愿� �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �벑濡� : ", response); + return response; + }); + }, + + relationDetail : function (conditions) { + return $http.post("issueTableConfig/relationDetail", conditions).then(function (response) { + $log.debug("�뿰愿� �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �긽�꽭 議고쉶 : ", response); + return response; + }); + }, + + downAdd : function (conditions) { + return $http.post("issueTableConfig/downAdd", conditions).then(function (response) { + $log.debug("�븯�쐞 �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �벑濡� : ", response); + return response; + }); + }, + + downDetail : function (conditions) { + return $http.post("issueTableConfig/downDetail", conditions).then(function (response) { + $log.debug("�븯�쐞 紐⑸줉 �뀒�씠釉� �꽕�젙 �긽�꽭 議고쉶 : ", response); + return response; + }); + }, } } ]) -- Gitblit v1.8.0