// // PURPOSE: // Count blocked student records in the database // // RULES: // 1. Uses PocketBase collection COL_USER_METAS with role='student' // 2. Only counts records with status='blocked' // 3. Returns Promise with the count // 4. Uses PocketBase's getList with filter // import { COL_USER_METAS } from '@/constants'; import { pb } from '@/lib/pb'; export default async function GetBlockedCount(): Promise { const { totalItems: count } = await pb.collection(COL_USER_METAS).getList(1, 1, { filter: 'status = "blocked" && role = "student"', }); return count; }