upd
This commit is contained in:
@ -6,9 +6,9 @@ const router=express.Router();
|
|||||||
|
|
||||||
//=== POST & get METHOD
|
//=== POST & get METHOD
|
||||||
router.get('/summary',[jwtauth], dashboardController.getDashboardSummary);
|
router.get('/summary',[jwtauth], dashboardController.getDashboardSummary);
|
||||||
router.get('/budget-line',dashboardController.getBudgetLineChart);
|
router.get('/budget-line',[jwtauth], dashboardController.getBudgetLineChart);
|
||||||
router.get('/procurement-chart',dashboardController.getProcurementStackedChart);
|
router.get('/procurement-chart',[jwtauth], dashboardController.getProcurementStackedChart);
|
||||||
router.get('/budget-utilization',dashboardController.getMonthlyBudgetUtilization);
|
router.get('/budget-utilization',[jwtauth], dashboardController.getMonthlyBudgetUtilization);
|
||||||
router.get('/spend-by-unit',dashboardController.getSpendByUnitChart);
|
router.get('/spend-by-unit',[jwtauth], dashboardController.getSpendByUnitChart);
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
||||||
|
|||||||
Reference in New Issue
Block a user