fix:delete to put method
This commit is contained in:
commit
2b5accd391
|
|
@ -196,7 +196,6 @@ export default function FormMasterUser() {
|
|||
|
||||
const fetchUserLevel = async () => {
|
||||
loading();
|
||||
|
||||
const request = {
|
||||
limit: 1000,
|
||||
page: 1,
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ export default function Login() {
|
|||
// Cookies.set("email", profile?.data?.data?.email, {
|
||||
// expires: 1,
|
||||
// });
|
||||
// router.push(`/admin/dashboard?timestamp=${getUnixTimestamp()}`);
|
||||
// router.push("/admin/dashboard");
|
||||
// Cookies.set("status", "login", {
|
||||
// expires: 1,
|
||||
// });
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ export default function HeaderNews() {
|
|||
</p>
|
||||
<ScrollShadow hideScrollBar className="h-[29vh] lg:h-[400px] ">
|
||||
{hotNews?.length > 0 ? (
|
||||
hotNews.map((data: any, index: number) => (
|
||||
hotNews?.map((data: any, index: number) => (
|
||||
<div
|
||||
className="text-xs text-left m-2 p-2 dark:bg-[#1E1616] bg-white rounded-md flex flex-row gap-2"
|
||||
key={data?.id}
|
||||
|
|
@ -249,7 +249,7 @@ export default function HeaderNews() {
|
|||
);
|
||||
}}
|
||||
>
|
||||
{hotNews.map((newsItem: any, index: number) => (
|
||||
{hotNews?.map((newsItem: any, index: number) => (
|
||||
<SwiperSlide key={newsItem?.id} className="!w-full h-[50vh]">
|
||||
<Card
|
||||
isFooterBlurred
|
||||
|
|
|
|||
|
|
@ -247,6 +247,7 @@ export default function ArticleTable() {
|
|||
}
|
||||
close();
|
||||
success("Berhasil Hapus");
|
||||
setPage(1);
|
||||
initState();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,10 +72,17 @@ export async function editAdvertiseIsActive(data: any) {
|
|||
return await httpPut(pathUrl, headers);
|
||||
}
|
||||
|
||||
// export async function deleteAdvertise(id: number) {
|
||||
// const headers = {
|
||||
// "content-type": "application/json",
|
||||
// };
|
||||
// const pathUrl = `/advertisement/${id}`;
|
||||
// return await httpDeleteInterceptor(pathUrl, headers);
|
||||
// }
|
||||
export async function deleteAdvertise(id: number) {
|
||||
const headers = {
|
||||
"content-type": "application/json",
|
||||
};
|
||||
const pathUrl = `/advertisement/${id}`;
|
||||
return await httpDeleteInterceptor(pathUrl);
|
||||
const pathUrl = `/advertisement/delete/${id}`;
|
||||
return await httpPut(pathUrl, headers);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -128,12 +128,18 @@ export async function getArticleById(id: any) {
|
|||
return await httpGet(`/articles/${id}`, headers);
|
||||
}
|
||||
|
||||
// export async function deleteArticle(id: string) {
|
||||
// const headers = {
|
||||
// "content-type": "application/json",
|
||||
// };
|
||||
// return await httpDeleteInterceptor(`articles/${id}`, headers);
|
||||
// }
|
||||
export async function deleteArticle(id: string) {
|
||||
const headers = {
|
||||
"content-type": "application/json",
|
||||
Authorization: `Bearer ${token}`,
|
||||
};
|
||||
return await httpDeleteInterceptor(`articles/${id}`);
|
||||
return await httpPut(`articles/delete/${id}`, headers);
|
||||
}
|
||||
|
||||
export async function getArticleByCategory(timeStamp: number) {
|
||||
|
|
@ -169,11 +175,17 @@ export async function uploadArticleThumbnail(id: string, data: any) {
|
|||
return await httpPost(`/articles/thumbnail/${id}`, headers, data);
|
||||
}
|
||||
|
||||
// export async function deleteArticleFiles(id: number) {
|
||||
// const headers = {
|
||||
// "content-type": "multipart/form-data",
|
||||
// };
|
||||
// return await httpDeleteInterceptor(`article-files/${id}`, headers);
|
||||
// }
|
||||
export async function deleteArticleFiles(id: number) {
|
||||
const headers = {
|
||||
"content-type": "multipart/form-data",
|
||||
};
|
||||
return await httpDeleteInterceptor(`article-files/${id}`);
|
||||
return await httpPut(`article-files/delete/${id}`, headers);
|
||||
}
|
||||
|
||||
export async function getUserLevelDataStat(
|
||||
|
|
|
|||
|
|
@ -32,11 +32,17 @@ export async function getCategoryById(id: number) {
|
|||
return await httpGet(`/article-categories/${id}`, headers);
|
||||
}
|
||||
|
||||
// export async function deleteCategory(id: number) {
|
||||
// const headers = {
|
||||
// "content-type": "application/json",
|
||||
// };
|
||||
// return await httpDeleteInterceptor(`article-categories/${id}`, headers);
|
||||
// }
|
||||
export async function deleteCategory(id: number) {
|
||||
const headers = {
|
||||
"content-type": "application/json",
|
||||
};
|
||||
return await httpDeleteInterceptor(`article-categories/${id}`, headers);
|
||||
return await httpPut(`article-categories/delete/${id}`, headers);
|
||||
}
|
||||
|
||||
export async function uploadCategoryThumbnail(id: string, data: any) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue