Files
lettersoup-online/002_source/cms/src/db/Notifications/constants.ts
2025-05-23 17:16:47 +08:00

24 lines
430 B
TypeScript

// Default and empty values for Notification
import type { Notification } from './type';
export const defaultNotification: Notification = {
id: '',
read: false,
type: '',
//
// TODO: troubleshoot
// author: {},
job: { title: '' },
description: '',
NOTI_ID: '',
created: '',
updated: '',
link: '',
createdAt: new Date(),
};
export const emptyNotification: Notification = {
...defaultNotification,
};