fix: K) 관리자 - put, delete 메소드 없애기 front-end

thkim
thkim 2024-06-13 18:04:38 +09:00
parent 378611bed7
commit 4a04cab8ce
6 changed files with 7 additions and 7 deletions

View File

@ -37,7 +37,7 @@ function SchedulesDetail(props) {
const deleteBoardURL = `/admin/committee/progress-status/${drftSeq}`; const deleteBoardURL = `/admin/committee/progress-status/${drftSeq}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }

View File

@ -72,7 +72,7 @@ function SchedulesDetail(props) {
const deleteBoardURL = `/schedule/${schdulId}`; const deleteBoardURL = `/schedule/${schdulId}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }

View File

@ -293,7 +293,7 @@ function SchedulesEdit(props) {
const deleteBoardURL = `/schedule/${schdulId}`; const deleteBoardURL = `/schedule/${schdulId}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }

View File

@ -155,7 +155,7 @@ function CommitteeCodeMgt(props) {
} }
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }

View File

@ -218,7 +218,7 @@ function PopupEditor(props) {
const deleteBoardURL = `/contents/api/popup-manage/${popupId}`; const deleteBoardURL = `/contents/api/popup-manage/${popupId}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }
@ -247,7 +247,7 @@ function PopupEditor(props) {
const deleteFileURL = `/contents/api/popup-manage/file/${fileSeq}`; const deleteFileURL = `/contents/api/popup-manage/file/${fileSeq}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }

View File

@ -223,7 +223,7 @@ function StandardResearchEditor(props) {
const deleteBoardURL = `/contents/standard-research/${rsId}`; const deleteBoardURL = `/contents/standard-research/${rsId}`;
const requestOptions = { const requestOptions = {
method: "DELETE", method: "POST",
headers: { headers: {
'Content-type': 'application/json', 'Content-type': 'application/json',
} }