From 75a68076aefe61d1d74f31a4c20202f78472a84f Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Wed, 28 May 2025 12:28:13 -0400 Subject: [PATCH] feat(change-password-component): Change Password Update [18720] - Made comments regarding the change password routing complexities with change-password and auth guard. --- apps/browser/src/popup/app-routing.module.ts | 2 ++ apps/desktop/src/app/app-routing.module.ts | 1 + apps/web/src/app/oss-routing.module.ts | 1 + 3 files changed, 4 insertions(+) diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts index 8459cb933d6..d9e39486906 100644 --- a/apps/browser/src/popup/app-routing.module.ts +++ b/apps/browser/src/popup/app-routing.module.ts @@ -568,6 +568,8 @@ const routes: Routes = [ component: ChangePasswordComponent, }, ], + // TODO: Turn this on with PM-22155 and resolve routing complexities. + // canActivate: [authGuard] }, ], }, diff --git a/apps/desktop/src/app/app-routing.module.ts b/apps/desktop/src/app/app-routing.module.ts index 5f308af8a83..30c50b57316 100644 --- a/apps/desktop/src/app/app-routing.module.ts +++ b/apps/desktop/src/app/app-routing.module.ts @@ -336,6 +336,7 @@ const routes: Routes = [ { path: "change-password", component: ChangePasswordComponent, + // TODO: Turn this on with PM-22155 and resolve routing complexities. // canActivate: [authGuard], }, ], diff --git a/apps/web/src/app/oss-routing.module.ts b/apps/web/src/app/oss-routing.module.ts index 3793ab58157..b70ae6c5d3f 100644 --- a/apps/web/src/app/oss-routing.module.ts +++ b/apps/web/src/app/oss-routing.module.ts @@ -601,6 +601,7 @@ const routes: Routes = [ { path: "change-password", component: ChangePasswordComponent, + // TODO: Turn this on with PM-22155 and resolve routing complexities. // canActivate: [authGuard], }, ],