From 15fe9c795db648096e9d7617e609fdb1c0e7cb13 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 29 11월 2021 09:49:54 +0900 Subject: [PATCH] 프로젝트 생성,수정 시 날짜 유효성 체크 제거 --- src/main/java/kr/wisestone/owl/web/controller/IssueController.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/web/controller/IssueController.java b/src/main/java/kr/wisestone/owl/web/controller/IssueController.java index 7639f38..a035e18 100644 --- a/src/main/java/kr/wisestone/owl/web/controller/IssueController.java +++ b/src/main/java/kr/wisestone/owl/web/controller/IssueController.java @@ -63,6 +63,18 @@ return this.setSuccessMessage(resJsonData); } + // �뙆�듃�꼫 紐⑸줉 議고쉶 + @RequestMapping(value = "/issue/findPartner", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + public + @ResponseBody + Map<String, Object> findPartner(@RequestBody Map<String, Map<String, Object>> params) { + Map<String, Object> resJsonData = new HashMap<>(); + + this.issueService.findPartner(resJsonData, params.get(Constants.REQ_KEY_CONTENT)); + + return this.setSuccessMessage(resJsonData); + } + // �씠�뒋 �긽�꽭 議고쉶 @RequestMapping(value = "/issue/detail", produces = MediaType.APPLICATION_JSON_VALUE) public @@ -88,6 +100,16 @@ return this.setSuccessMessage(resJsonData); } + // �븯�쐞 �씠�뒋 異붽� + @RequestMapping(value = "/issue/modifyParentIssue", produces = MediaType.APPLICATION_JSON_VALUE) + public + @ResponseBody + Map<String, Object> modifyParentIssue(@RequestBody Map<String, Map<String, Object>> params) { + Map<String, Object> resJsonData = new HashMap<>(); + this.issueService.modifyParentIssue(IssueForm.make(params.get(Constants.REQ_KEY_CONTENT))); + return this.setSuccessMessage(resJsonData); + } + // �씠�뒋 �궘�젣 @RequestMapping(value = "/issue/remove", produces = MediaType.APPLICATION_JSON_VALUE) public -- Gitblit v1.8.0