From 287401f1da703e54a24630b4ff716ba9cfc453e2 Mon Sep 17 00:00:00 2001 From: Aya Date: Sun, 3 May 2026 11:53:05 +0300 Subject: [PATCH] add notification route --- backend/src/routes/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/routes/index.ts b/backend/src/routes/index.ts index d94ec76..dfc403c 100644 --- a/backend/src/routes/index.ts +++ b/backend/src/routes/index.ts @@ -9,6 +9,7 @@ import inventoryRoutes from '../modules/inventory/inventory.routes'; import projectsRoutes from '../modules/projects/projects.routes'; import marketingRoutes from '../modules/marketing/marketing.routes'; import tendersRoutes from '../modules/tenders/tenders.routes'; +import notificationsRoutes from '../modules/notifications/notifications.routes'; const router = Router(); @@ -23,6 +24,7 @@ router.use('/inventory', inventoryRoutes); router.use('/projects', projectsRoutes); router.use('/marketing', marketingRoutes); router.use('/tenders', tendersRoutes); +router.use('/notifications', notificationsRoutes); // API info router.get('/', (req, res) => {