From be37f8349aafd9033804cbd9cf7ed60e06c82814 Mon Sep 17 00:00:00 2001 From: daekuk Date: Mon, 27 Oct 2025 11:33:54 +0900 Subject: [PATCH] =?UTF-8?q?API=20=EB=B3=B5=EC=A0=9C=EB=8F=84=20=EC=9D=B4?= =?UTF-8?q?=EB=A0=A5=EB=A1=9C=EA=B7=B8=EC=97=90=20=EB=82=A8=EA=B8=B0?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/WEB-INF/auditpoints.dat | 2 +- WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp | 2 +- .../eai/rms/onl/transaction/apim/ApiInterfaceController.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WebContent/WEB-INF/auditpoints.dat b/WebContent/WEB-INF/auditpoints.dat index a1d4d5f..1c2969a 100644 --- a/WebContent/WEB-INF/auditpoints.dat +++ b/WebContent/WEB-INF/auditpoints.dat @@ -1,6 +1,6 @@ UserManController_사용자관리_APIGW_INSERT,UPDATE,DELETE AdapterController_어댑터관리_APIGW_INSERT,UPDATE,DELETE -ApiInterfaceController_API관리_APIGW_INSERT,UPDATE,DELETE +ApiInterfaceController_API관리_APIGW_INSERT,UPDATE,DELETE,CLONE ClientController_Client (키정보)관리_APIGW_INSERT,UPDATE,DELETE RoleController_Role (역할)관리_APIGW_INSERT,UPDATE,DELETE MenuController_Menu관리_APIGW_INSERT,UPDATE,DELETE diff --git a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp index a7cbe4c..fa3deb8 100644 --- a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp +++ b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp @@ -1196,7 +1196,7 @@ type: "POST", url: jsonUrl, data: { - cmd: 'INSERT_CLONE', + cmd: 'CLONE', orgApiInterfaceId, newBizCode, newApiInterfaceId, diff --git a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceController.java b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceController.java index 0c7a882..ecb0b7c 100644 --- a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceController.java +++ b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceController.java @@ -268,7 +268,7 @@ public class ApiInterfaceController extends OnlBaseAnnotationController { .body(exportData.getExportFileContent()); } - @PostMapping(value = "/onl/transaction/apim/apiInterfaceMan.json", params = "cmd=INSERT_CLONE") + @PostMapping(value = "/onl/transaction/apim/apiInterfaceMan.json", params = "cmd=CLONE") public ResponseEntity cloneApiInterface(String orgApiInterfaceId, String newBizCode, String newApiInterfaceId, String newInboundHttpMethod, String newInboundRestPath) throws BizException { try { ApiInterfaceUI orgApiInterfaceUI = service.selectDetail(orgApiInterfaceId);