add email threads to companies
This commit is contained in:
@@ -14,6 +14,13 @@ router.use(authenticate);
|
||||
router.get('/reminders/summary', companyController.getReminderSummary);
|
||||
router.get('/reminders/counts', companyController.getReminderCountsByCompany);
|
||||
|
||||
// Company email threads
|
||||
router.get(
|
||||
'/:companyId/email-threads',
|
||||
validateParams(z.object({ companyId: z.string().uuid() })),
|
||||
companyController.getCompanyEmailThreads
|
||||
);
|
||||
|
||||
/**
|
||||
* Company management
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user