Files
lettersoup-online/002_source/cms/src/db/Notifications/GetAll.tsx
2025-04-24 20:02:56 +08:00

11 lines
335 B
TypeScript

// api method for get all notification records
// RULES:
// TBA
import { pb } from '@/lib/pb';
import { COL_NOTIFICATIONS } from '@/constants';
import { RecordModel } from 'pocketbase';
export async function getAllNotifications(options = {}): Promise<RecordModel[]> {
return pb.collection(COL_NOTIFICATIONS).getFullList(options);
}