This commit is contained in:
Rizki
2026-03-16 11:36:05 +07:00
parent 357b95774f
commit 2b34f15d4f

View File

@ -6,9 +6,9 @@ const router=express.Router();
//=== POST & get METHOD
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);
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);
module.exports = router;