resolve issues with new features

This commit is contained in:
Matthias Hochmeister
2026-03-12 16:42:21 +01:00
parent 5aa309b97a
commit 68586b01dc
19 changed files with 526 additions and 109 deletions

View File

@@ -9,5 +9,7 @@ router.get('/', authenticate, notificationController.getNotific
router.get('/count', authenticate, notificationController.getUnreadCount.bind(notificationController));
router.patch('/:id/read', authenticate, notificationController.markAsRead.bind(notificationController));
router.post('/mark-all-read', authenticate, notificationController.markAllRead.bind(notificationController));
router.post('/dismiss-by-type', authenticate, notificationController.dismissByType.bind(notificationController));
router.delete('/read', authenticate, notificationController.deleteAllRead.bind(notificationController));
export default router;