add endpoint spend by unit

This commit is contained in:
Rizki
2026-03-16 11:17:50 +07:00
parent 5335671e98
commit 357b95774f
3 changed files with 81 additions and 1 deletions

View File

@ -9,5 +9,6 @@ router.get('/summary',[jwtauth], dashboardController.getDashboardSummary);
router.get('/budget-line',dashboardController.getBudgetLineChart);
router.get('/procurement-chart',dashboardController.getProcurementStackedChart);
router.get('/budget-utilization',dashboardController.getMonthlyBudgetUtilization);
router.get('/spend-by-unit',dashboardController.getSpendByUnitChart);
module.exports = router;