updated absensi, branch

This commit is contained in:
2025-10-22 13:37:57 +07:00
parent 328b3653fe
commit 7e0b41a1c9
5 changed files with 80 additions and 47 deletions

View File

@@ -13,9 +13,4 @@ router.use('/attedances', AbsensRouter)
router.use('/branches', BranchRouter)
router.use('/user-management', userManagement)
module.exports = router

View File

@@ -33,8 +33,6 @@ router.post("/forgot-password", apiKey, function name(req, res) {
controller.resetPassword(req, res, token);
});
module.exports = router

View File

@@ -11,7 +11,6 @@ router.post('/', apiKey, jwt, (req, res) => {
controller.create(req, res)
})
router.get('/', apiKey, jwt, (req, res) => {
controller.index(req, res)
})