Skip to content

Commit

Permalink
Merge pull request #349 from bluewave-labs/339-admin-login
Browse files Browse the repository at this point in the history
admin register routes
  • Loading branch information
erenfn authored Nov 20, 2024
2 parents cbbc723 + dd74ba0 commit d46ed29
Show file tree
Hide file tree
Showing 6 changed files with 1,788 additions and 4,840 deletions.
2 changes: 1 addition & 1 deletion backend/src/routes/team.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const router = express.Router();
const teamPermissions = settings.team.permissions;

router.get("/details", authenticateJWT, getTeamDetails);
router.get("/count", authenticateJWT, getTeamCount);
router.get("/count", getTeamCount);

router.post("/set-organisation", authenticateJWT, accessGuard(teamPermissions.setOrg), setOrganisation);
router.post("/invite", authenticateJWT, accessGuard(teamPermissions.invite), sendTeamInvite);
Expand Down
Loading

0 comments on commit d46ed29

Please sign in to comment.