1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 12:13:45 +00:00

feat(change-password-component): Change Password Update [18720] - Made comments regarding the change password routing complexities with change-password and auth guard.

This commit is contained in:
Patrick Pimentel
2025-05-28 12:28:13 -04:00
parent 34b58d9812
commit 75a68076ae
3 changed files with 4 additions and 0 deletions

View File

@@ -568,6 +568,8 @@ const routes: Routes = [
component: ChangePasswordComponent,
},
],
// TODO: Turn this on with PM-22155 and resolve routing complexities.
// canActivate: [authGuard]
},
],
},

View File

@@ -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],
},
],

View File

@@ -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],
},
],