자주묻는 질문 -> 자주하는 질문 텍스트 수정

This commit is contained in:
kimjhjjang
2022-11-09 13:49:08 +09:00
parent 06ed87c3c2
commit 2a72479ac0
5 changed files with 34 additions and 34 deletions

View File

@@ -20,17 +20,17 @@ const deleteNotice = (params) => {
return httpClient.post('/api/v1/bo/homeMgt/deleteNotice', params, { withCredentials: false });
};
// 자주는 질문 등록
// 자주는 질문 등록
const insertFaq = (params) => {
return httpClient.post('/api/v1/bo/homeMgt/insertFaq', params, { withCredentials: false });
};
// 자주는 질문 수정
// 자주는 질문 수정
const updateFaq = (params) => {
return httpClient.post('/api/v1/bo/homeMgt/updateFaq', params, { withCredentials: false });
};
// 자주는 질문 삭제
// 자주는 질문 삭제
const deleteFaq = (params) => {
return httpClient.post('/api/v1/bo/homeMgt/deleteFaq', params, { withCredentials: false });
};