From f76592e90c1a2810b65b5a93fadf2c19c13b6bc4 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 금, 17 12월 2021 18:23:21 +0900
Subject: [PATCH] 상위이슈의 상세페이지에서 하위이슈에 대한 활동내역 보여주기 완료

---
 src/main/webapp/scripts/components/api/api.service.js |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/src/main/webapp/scripts/components/api/api.service.js b/src/main/webapp/scripts/components/api/api.service.js
index 6b797a9..d81b9cf 100644
--- a/src/main/webapp/scripts/components/api/api.service.js
+++ b/src/main/webapp/scripts/components/api/api.service.js
@@ -46,7 +46,19 @@
                     $log.debug("�씠�뒋 �쑀�삎 以묐났媛� �닔�젙 寃곌낵 : ", response);
                     return response;
                 });
-            }
+            },
+            findHistory : function (conditions) {
+                return $http.post("api/findHistory", conditions).then(function (response) {
+                    $log.debug("API �씠�뒋 �벑濡� 湲곕줉 議고쉶 寃곌낵 : ", response);
+                    return response;
+                });
+            },
+            saveCompleteIssueStatus : function (conditions) {
+                return $http.post("api/saveCompleteIssueStatus", conditions).then(function (response) {
+                    $log.debug("API �씠�뒋 �벑濡� 湲곕줉 議고쉶 寃곌낵 : ", response);
+                    return response;
+                });
+            },
         }
     }
     ]);

--
Gitblit v1.8.0