| | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |
| | | |
| | | // 사용자의 마지막 접근 이슈 유형 정보 업데이트 |
| | | @RequestMapping(value = "/user/updateLastIssueType", method = RequestMethod.POST) |
| | | public |
| | | @ResponseBody |
| | | Map<String, Object> updateLastIssueType(@RequestBody Map<String, Map<String, Object>> params) { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | |
| | | this.userService.updateLastIssueType(resJsonData, UserForm.make(params.get(Constants.REQ_KEY_CONTENT))); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |
| | | |
| | | |
| | | // 프로젝트에 참여하는 일반 사용자 목록 조회 |
| | | @RequestMapping(value = "/user/findProjectMember", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) |
| | | public |