Company-profile ed point changed

This commit is contained in:
unknown 2025-11-17 12:25:47 +05:30
parent d8cc760e36
commit 2dfe922610

View File

@ -668,7 +668,7 @@ router.delete("/establishments/:id",[verifySignature, verifyToken], establishmen
/**
* @swagger
* /api/company-profile/uploadCSV:
* /api/establishments/uploadCSV:
* post:
* summary: Upload Establishment data in bulk using CSV file
* description: This API accepts CSV file and inserts multiple Establishment in bulk. CSV header columns must match Establishment table columns.
@ -695,7 +695,7 @@ router.delete("/establishments/:id",[verifySignature, verifyToken], establishmen
* 500:
* description: Server error
*/
router.post("/company-profile/uploadCSV",[verifySignature, verifyToken, upload.single("file")], establishmentController.establishmentBulkUpload);
router.post("/establishments/uploadCSV",[verifySignature, verifyToken, upload.single("file")], establishmentController.establishmentBulkUpload);