add notification route

This commit is contained in:
Aya
2026-05-03 11:53:05 +03:00
parent 345ba195f8
commit 287401f1da

View File

@@ -9,6 +9,7 @@ import inventoryRoutes from '../modules/inventory/inventory.routes';
import projectsRoutes from '../modules/projects/projects.routes'; import projectsRoutes from '../modules/projects/projects.routes';
import marketingRoutes from '../modules/marketing/marketing.routes'; import marketingRoutes from '../modules/marketing/marketing.routes';
import tendersRoutes from '../modules/tenders/tenders.routes'; import tendersRoutes from '../modules/tenders/tenders.routes';
import notificationsRoutes from '../modules/notifications/notifications.routes';
const router = Router(); const router = Router();
@@ -23,6 +24,7 @@ router.use('/inventory', inventoryRoutes);
router.use('/projects', projectsRoutes); router.use('/projects', projectsRoutes);
router.use('/marketing', marketingRoutes); router.use('/marketing', marketingRoutes);
router.use('/tenders', tendersRoutes); router.use('/tenders', tendersRoutes);
router.use('/notifications', notificationsRoutes);
// API info // API info
router.get('/', (req, res) => { router.get('/', (req, res) => {