repair: get all notification

This commit is contained in:
2025-11-14 08:53:58 +07:00
parent c8149c2359
commit b8dd4a61f8
2 changed files with 97 additions and 65 deletions

View File

@@ -15,6 +15,7 @@ const UserSchedule = require("./user_schedule.route")
const historyValue = require("./history_value.route")
const contact = require("./contact.route")
const brandSparePart = require("./brand_sparepart.route")
const notification = require("./notification.route")
router.use("/auth", auth);
router.use("/user", users);
@@ -32,6 +33,7 @@ router.use("/user-schedule", UserSchedule)
router.use("/history", historyValue)
router.use("/contact", contact)
router.use("/brand-sparepart", brandSparePart)
router.use("/notification", notification)
module.exports = router;