Create notifications resource
Notifications has the following properties:
- id: number;
- subject: string;
- description: string;
- isRead: boolean;
- createdBy: string;
- createdDate: Date;
Actions:
- GET notifications: returns all notifications for the logged in user
- PUT notifications/ : updates notification with id's read flag as true
- PUT notifications : sets all notifications for current user with read flag as true
- POST notifications: creates a notification for current user
Create notifications resource
Notifications has the following properties:
Actions: