Files
tower/apps/web/app/api/messages/pending/count/route.ts
T
2026-06-09 02:02:40 +05:30

10 lines
293 B
TypeScript

import { apiFetch, jsonResponse } from '../../../../_lib/api';
export const dynamic = 'force-dynamic';
export async function GET(): Promise<Response> {
const res = await apiFetch('/admin/messages/pending/count');
const body = await res.json();
return jsonResponse(body, res.status);
}