Untitled

 avatar
unknown
plain_text
a year ago
309 B
4
Indexable
const express = require('express');
const notificationRouter = express.Router();
const notificationController = require('../controllers/notificationController');

// Add a new order
notificationRouter.get('/:id', notificationController.getNotificationsByUser);



module.exports = notificationRouter;
Editor is loading...
Leave a Comment