From bcf1555957d606938b4e5e72aaeba8a2ab555947 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 화, 30 11월 2021 16:22:16 +0900
Subject: [PATCH] 대시보드 - 내 프로젝트 + 하위 프로젝트 같이 보여주는 기능

---
 src/main/webapp/scripts/components/workspace/workspace.service.js |   36 ------------------------------------
 1 files changed, 0 insertions(+), 36 deletions(-)

diff --git a/src/main/webapp/scripts/components/workspace/workspace.service.js b/src/main/webapp/scripts/components/workspace/workspace.service.js
index 753763a..2c090dc 100644
--- a/src/main/webapp/scripts/components/workspace/workspace.service.js
+++ b/src/main/webapp/scripts/components/workspace/workspace.service.js
@@ -8,33 +8,9 @@
 ], function (app) {
     app.factory("Workspace", ['$http', '$log', function ($http, $log) {
         return {
-            levelFind : function (conditions) {
-                return $http.post("workspace/levelFind", conditions).then(function (response) {
-                    $log.debug("�궗�슜�옄 �벑湲� 紐⑸줉 : ", response);
-                    return response;
-                });
-            },
-            departmentFind : function (conditions) {
-                return $http.post("workspace/departmentFind", conditions).then(function (response) {
-                    $log.debug("遺��꽌 紐⑸줉 : ", response);
-                    return response;
-                });
-            },
             find : function (conditions) {
                 return $http.post("workspace/find", conditions).then(function (response) {
                     $log.debug("�뾽臾닿났媛� 紐⑸줉 �뜲�씠�꽣 : ", response);
-                    return response;
-                });
-            },
-            levelAdd : function (conditions) {
-                return $http.post("workspace/levelAdd", conditions).then(function (response) {
-                    $log.debug("�궗�슜�옄 �벑湲� �깮�꽦 寃곌낵 : ", response);
-                    return response;
-                });
-            },
-            departmentAdd : function (conditions) {
-                return $http.post("workspace/departmentAdd", conditions).then(function (response) {
-                    $log.debug("遺��꽌 �깮�꽦 寃곌낵 : ", response);
                     return response;
                 });
             },
@@ -53,18 +29,6 @@
             findMyWorkspace : function (conditions) {
                 return $http.post("workspace/findMyWorkspace", conditions).then(function (response) {
                     $log.debug("�옄�떊�씠 愿�由ы븯�뒗 �뾽臾닿났媛� �젙蹂� 寃곌낵 : ", response);
-                    return response;
-                });
-            },
-            findUserLevel : function (conditions) { //�궗�슜�옄 �벑湲�
-                return $http.post("workspace/levelFind", conditions).then(function (response) {
-                    $log.debug("�궗�슜�옄 �벑湲� �젙蹂� 寃곌낵 : ", response);
-                    return response;
-                });
-            },
-            findDepartment : function (conditions) { //遺��꽌
-                return $http.post("workspace/departmentFind", conditions).then(function (response) {
-                    $log.debug("�궗�슜�옄 �벑湲� �젙蹂� 寃곌낵 : ", response);
                     return response;
                 });
             },

--
Gitblit v1.8.0