Skip to content

Commit

Permalink
Fix Change Password Endpoint (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
HuzzNZ authored Jun 2, 2024
2 parents e4019b0 + 00b84b4 commit 518ce41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/routes/auth.router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class AuthRouter {
)

// scope: user
router.patch("/password", Scope.has(SCOPES.user),
router.put("/password", Scope.has(SCOPES.user),
expressAsyncHandler(AuthController.changePassword)
)

Expand Down

0 comments on commit 518ce41

Please sign in to comment.