From 4a04cab8ce041c21bca6fda68959b030674b0983 Mon Sep 17 00:00:00 2001 From: thkim Date: Thu, 13 Jun 2024 18:04:38 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20K)=20=EA=B4=80=EB=A6=AC=EC=9E=90=20-=20p?= =?UTF-8?q?ut,=20delete=20=EB=A9=94=EC=86=8C=EB=93=9C=20=EC=97=86=EC=95=A0?= =?UTF-8?q?=EA=B8=B0=20front-end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/admin/committee/ProgressStatus/Detail.jsx | 2 +- .../src/pages/admin/committee/Schedules/Detail.jsx | 2 +- .../src/pages/admin/committee/Schedules/Edit.jsx | 2 +- .../src/pages/admin/config/CommitteeCodeMgt.jsx | 2 +- .../src/pages/admin/contents/PopUp/PopupEditor.jsx | 4 ++-- .../contents/StandardResearch/StandardResearchEditor.jsx | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/committee/ProgressStatus/Detail.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/committee/ProgressStatus/Detail.jsx index 79f2bf4..33ab3b6 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/committee/ProgressStatus/Detail.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/committee/ProgressStatus/Detail.jsx @@ -37,7 +37,7 @@ function SchedulesDetail(props) { const deleteBoardURL = `/admin/committee/progress-status/${drftSeq}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Detail.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Detail.jsx index e1b8549..8b96db5 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Detail.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Detail.jsx @@ -72,7 +72,7 @@ function SchedulesDetail(props) { const deleteBoardURL = `/schedule/${schdulId}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Edit.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Edit.jsx index 1838b0c..c28ef4f 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Edit.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules/Edit.jsx @@ -293,7 +293,7 @@ function SchedulesEdit(props) { const deleteBoardURL = `/schedule/${schdulId}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/config/CommitteeCodeMgt.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/config/CommitteeCodeMgt.jsx index ef564cf..002ebae 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/config/CommitteeCodeMgt.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/config/CommitteeCodeMgt.jsx @@ -155,7 +155,7 @@ function CommitteeCodeMgt(props) { } const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp/PopupEditor.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp/PopupEditor.jsx index 4917e2c..c55b188 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp/PopupEditor.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp/PopupEditor.jsx @@ -218,7 +218,7 @@ function PopupEditor(props) { const deleteBoardURL = `/contents/api/popup-manage/${popupId}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } @@ -247,7 +247,7 @@ function PopupEditor(props) { const deleteFileURL = `/contents/api/popup-manage/file/${fileSeq}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardResearch/StandardResearchEditor.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardResearch/StandardResearchEditor.jsx index fe8e435..c30e62e 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardResearch/StandardResearchEditor.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardResearch/StandardResearchEditor.jsx @@ -223,7 +223,7 @@ function StandardResearchEditor(props) { const deleteBoardURL = `/contents/standard-research/${rsId}`; const requestOptions = { - method: "DELETE", + method: "POST", headers: { 'Content-type': 'application/json', }