add theme switcher and improve org switcher

This commit is contained in:
Milo Schwartz 2024-12-22 20:16:52 -05:00
parent af2d78cbfb
commit b1afba191e
No known key found for this signature in database
4 changed files with 106 additions and 49 deletions

View file

@ -448,11 +448,11 @@ authRouter.post(
verifySessionMiddleware,
auth.requestEmailVerificationCode
);
authRouter.post(
"/change-password",
verifySessionUserMiddleware,
auth.changePassword
);
// authRouter.post(
// "/change-password",
// verifySessionUserMiddleware,
// auth.changePassword
// );
authRouter.post("/reset-password/request", auth.requestPasswordReset);
authRouter.post("/reset-password/", auth.resetPassword);