update notifications,
This commit is contained in:
11
002_source/cms/src/db/Notifications/Create.tsx
Normal file
11
002_source/cms/src/db/Notifications/Create.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// api method for create notification record
|
||||
// RULES:
|
||||
// TBA
|
||||
import { pb } from '@/lib/pb';
|
||||
import { COL_NOTIFICATIONS } from '@/constants';
|
||||
import type { NotificationFormProps } from '@/components/dashboard/notification/type.d';
|
||||
import type { RecordModel } from 'pocketbase';
|
||||
|
||||
export async function createNotification(data: NotificationFormProps): Promise<RecordModel> {
|
||||
return pb.collection(COL_NOTIFICATIONS).create(data);
|
||||
}
|
||||
Reference in New Issue
Block a user