This commit is contained in:
Rizki
2026-03-16 13:42:50 +07:00
parent 2b34f15d4f
commit 1b3a4b67f4
3 changed files with 51 additions and 0 deletions

View File

@ -10,5 +10,6 @@ router.get('/budget-line',[jwtauth], dashboardController.getBudgetLineChart);
router.get('/procurement-chart',[jwtauth], dashboardController.getProcurementStackedChart);
router.get('/budget-utilization',[jwtauth], dashboardController.getMonthlyBudgetUtilization);
router.get('/spend-by-unit',[jwtauth], dashboardController.getSpendByUnitChart);
router.get("/dashboard/my-task", dashboardController.getMyTask);
module.exports = router;