Skip to content

Commit

Permalink
Merge pull request #1375 from bluewave-labs/fix/be/invite-route
Browse files Browse the repository at this point in the history
fix: invite route
  • Loading branch information
ajhollid authored Dec 17, 2024
2 parents 5ebd6fd + daf5ccb commit ab2dec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/routes/inviteRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ import {
const router = Router();

router.post("/", isAllowed(["admin", "superadmin"]), verifyJWT, issueInvitation);
router.post("/verify", issueInvitation);
router.post("/verify", inviteVerifyController);

export default router;

0 comments on commit ab2dec2

Please sign in to comment.