Skip to content

Commit

Permalink
Fix invite route
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhollid committed Dec 13, 2024
1 parent fd1232d commit daf5ccb
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 daf5ccb

Please sign in to comment.