-
Notifications
You must be signed in to change notification settings - Fork 3
Notifications #86
Copy link
Copy link
Open
Labels
Description
GET /notifications
- Get all notifications for the current user
- No input
- Body Output
** id: number;
** subject: string;
** description: string;
** isRead: boolean;
** createdBy: string;
** createdDate: Date;
PUT /notifications/${id}
- Mark the given notification as "read"
- Restrict to notifications for the current user
- No input
- No body output
PUT /notifications
- Mark all notifications of the current user as "read"
- No input
- No body output
Reactions are currently unavailable