Add Oudelaa dashboard API integration
فشلت بعض الفحوصات
Deploy To Ghaymah / deploy (push) Has been cancelled

هذا الالتزام موجود في:
boutmoun123
2026-05-25 20:36:52 +03:00
الأصل 367fce6557
التزام 8863f61d00
90 ملفات معدلة مع 16694 إضافات و1 حذوفات

عرض الملف

@@ -0,0 +1,13 @@
import { apiEndpoints } from "@/lib/api/endpoints";
import { fetchWithAuth } from "@/lib/auth/client";
import type { PostsResponse, SuccessMessage } from "@/types/api";
export async function listModerationPosts(params: Record<string, string | number | boolean | null | undefined> = {}) {
return fetchWithAuth<PostsResponse>(apiEndpoints.posts.moderation(params));
}
export async function deleteAdminPost(postId: string) {
return fetchWithAuth<SuccessMessage>(apiEndpoints.posts.adminDelete(postId), {
method: "DELETE",
});
}