This commit is contained in:
hanif salafi 2025-10-16 08:53:24 +07:00
commit 7b13a09b76
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ export async function getTagsBySubCategoryId(subCategory: any) {
} }
export async function listEnableCategory(type: any, status?: boolean) { export async function listEnableCategory(type: any, status?: boolean) {
const url = `media/categories/list?enablePage=0&sort=desc&sortBy=id&type=${type}&isInt=true&isPublish=${status || ""}`; const url = `media/categories/list/publish?enablePage=0&sort=desc&sortBy=id&type=${type}&isInt=true&isPublish=${status || ""}`;
return httpGetInterceptor(url); return httpGetInterceptor(url);
} }