1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 20:24:01 +00:00

feat(change-password-component): Change Password Update [18720] - Turned on auth guard on other clients for change-password route.

This commit is contained in:
Patrick Pimentel
2025-06-05 15:40:50 -04:00
parent 28da2c9615
commit 2f41f21913
2 changed files with 2 additions and 4 deletions

View File

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

View File

@@ -336,8 +336,7 @@ const routes: Routes = [
{
path: "change-password",
component: ChangePasswordComponent,
// TODO: Turn this on with PM-22155 and resolve routing complexities.
// canActivate: [authGuard],
canActivate: [authGuard],
},
],
},