From 7990ddc89ef4c8498d570b1af87b19eec43689c9 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 수, 01 12월 2021 19:26:12 +0900
Subject: [PATCH] properties 변경(포트8080/메일제목)

---
 src/main/webapp/scripts/components/api/api.service.js |   26 +++++++++++++++++++++++++-
 1 files changed, 25 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 b95c0c1..6b797a9 100644
--- a/src/main/webapp/scripts/components/api/api.service.js
+++ b/src/main/webapp/scripts/components/api/api.service.js
@@ -3,7 +3,7 @@
 define([
     'app'
 ], function (app) {
-    app.factory("Api", ['$http', '$log', function ($http, $log) {
+    app.factory(  "Api", ['$http', '$log', function ($http, $log) {
         return {
             find : function (conditions) {
                 return $http.post("apiToken/find", conditions).then(function (response) {
@@ -22,6 +22,30 @@
                     $log.debug("�넗�겙 �궘�젣 寃곌낵 : ", response);
                     return response;
                 });
+            },
+            findApiDefault : function (conditions) {
+                return $http.post("issueApiDefault/find", conditions).then(function (response) {
+                    $log.debug("�씠�뒋 �쑀�삎 珥덇린媛� 議고쉶 寃곌낵 : ", response);
+                    return response;
+                });
+            },
+            modifyApiDefault : function (conditions) {
+                return $http.post("issueApiDefault/modify", conditions).then(function (response) {
+                    $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;
+                });
             }
         }
     }

--
Gitblit v1.8.0