From 0783fb3611c0f59dfde624af0d49ec180537fa3e Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 월, 29 11월 2021 02:03:18 +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..c6342eb 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