Skip to content

Commit

Permalink
contact us post
Browse files Browse the repository at this point in the history
  • Loading branch information
Hemu21 committed May 25, 2024
1 parent f0a7bd7 commit 674d91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/routes/contactUs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const deleteContactUs = require('./delete');
const { authMiddleware } = require('../../../helpers/middlewares/auth');

router.get('/getcontactus', getContact);
router.post('/',authMiddleware, validation(contactValidationSchema), postContact);
router.post('/', validation(contactValidationSchema), postContact);
router.delete("/deleteContactUs",authMiddleware, deleteContactUs);

module.exports = router;

0 comments on commit 674d91a

Please sign in to comment.