| | |
| | | return response; |
| | | }); |
| | | }, |
| | | updateLastIssueType : function (conditions) { |
| | | return $http.post("user/updateLastIssueType", conditions).then(function (response) { |
| | | $log.debug("사용자가 마지막으로 선택한 이슈 유형 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | find : function (conditions) { |
| | | return $http.post("user/find", conditions).then(function (response) { |
| | | $log.debug("사용자 목록 데이터 : ", response); |
| | |
| | | return response; |
| | | }); |
| | | }, |
| | | findMyLevelAndDepartment : function (conditions) { |
| | | return $http.post("user/findMyLevelAndDepartment", conditions).then(function (response) { |
| | | $log.debug("내 정보 데이터 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | modify : function (conditions) { |
| | | conditions.url = "user/modify"; |
| | | return $upload.upload(conditions).then(function (response) { |