fix: K) 관리자 - put, delete 메소드 없애기 front-end
parent
378611bed7
commit
4a04cab8ce
|
|
@ -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',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ function SchedulesDetail(props) {
|
|||
const deleteBoardURL = `/schedule/${schdulId}`;
|
||||
|
||||
const requestOptions = {
|
||||
method: "DELETE",
|
||||
method: "POST",
|
||||
headers: {
|
||||
'Content-type': 'application/json',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@ function SchedulesEdit(props) {
|
|||
const deleteBoardURL = `/schedule/${schdulId}`;
|
||||
|
||||
const requestOptions = {
|
||||
method: "DELETE",
|
||||
method: "POST",
|
||||
headers: {
|
||||
'Content-type': 'application/json',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ function CommitteeCodeMgt(props) {
|
|||
}
|
||||
|
||||
const requestOptions = {
|
||||
method: "DELETE",
|
||||
method: "POST",
|
||||
headers: {
|
||||
'Content-type': 'application/json',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -223,7 +223,7 @@ function StandardResearchEditor(props) {
|
|||
const deleteBoardURL = `/contents/standard-research/${rsId}`;
|
||||
|
||||
const requestOptions = {
|
||||
method: "DELETE",
|
||||
method: "POST",
|
||||
headers: {
|
||||
'Content-type': 'application/json',
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue