add reminders notes and notification in sidebar

This commit is contained in:
richardtekula
2025-11-25 11:29:03 +01:00
parent f4397bc0de
commit cf4df9d314
3 changed files with 62 additions and 1 deletions

View File

@@ -10,6 +10,10 @@ const router = express.Router();
// All company routes require authentication
router.use(authenticate);
// Reminder summaries (must be before :companyId routes)
router.get('/reminders/summary', companyController.getReminderSummary);
router.get('/reminders/counts', companyController.getReminderCountsByCompany);
/**
* Company management
*/