Added some api's : GWM

This commit is contained in:
Gowtham M 2025-10-17 15:39:17 +05:30
parent 0915843ef4
commit b961e19bf1

View File

@ -1743,6 +1743,9 @@ router.post("/submission_deadlines",[verifySignature, verifyToken], ConfigContro
* get:
* summary: Get dashboard data for establishment user
* tags: [Dashboard]
* security:
* - appSignature: []
* - bearerAuth: []
* parameters:
* - in: query
* name: establishment_id
@ -1762,7 +1765,7 @@ router.post("/submission_deadlines",[verifySignature, verifyToken], ConfigContro
* 500:
* description: Server error
*/
router.get("/establishment_dashboard",dashboardController.getEstablishmentDashboard);
router.get("/establishment_dashboard",[verifySignature, verifyToken],dashboardController.getEstablishmentDashboard);