This commit is contained in:
Rizki
2026-03-10 10:17:52 +07:00
parent 5c3be08142
commit e01b2706f3
3 changed files with 51 additions and 0 deletions

View File

@ -10,6 +10,7 @@ router.get('/getlistbudgetrequest',[jwtauth], justificationcontroller.getListBud
router.get('/getlistcreatedby',[jwtauth], justificationcontroller.getListCreatedBy);
router.get('/getlistcheckedby',[jwtauth], justificationcontroller.getListCheckedBy);
router.get('/getlistapprovedby',[jwtauth], justificationcontroller.getListApprovedBy);
router.get('/getlistcheckedandapprovedby',[jwtauth], justificationcontroller.getListCheckedAndApprovedBy);
router.post('/setnewjustification',[jwtauth, uploadfile], justificationcontroller.newJustification);
router.post('/deletejustification',[jwtauth], justificationcontroller.deleteJustification);
router.post('/updatejustification',[jwtauth, uploadfile], justificationcontroller.updateJustification);