1
0
mirror of https://github.com/bitwarden/web synced 2025-12-14 07:13:23 +00:00

weak passwords report

This commit is contained in:
Kyle Spearrin
2018-12-11 17:49:51 -05:00
parent dc1ffafdf3
commit 3963990831
6 changed files with 181 additions and 3 deletions

View File

@@ -55,6 +55,7 @@ import { PasswordGeneratorComponent } from './tools/password-generator.component
import { ReusedPasswordsReportComponent } from './tools/reused-passwords-report.component';
import { ToolsComponent } from './tools/tools.component';
import { UnsecuredWebsitesReportComponent } from './tools/unsecured-websites-report.component';
import { WeakPasswordsReportComponent } from './tools/weak-passwords-report.component';
import { VaultComponent } from './vault/vault.component';
@@ -160,6 +161,11 @@ const routes: Routes = [
component: UnsecuredWebsitesReportComponent,
data: { titleId: 'unsecuredWebsitesReport' },
},
{
path: 'weak-passwords-report',
component: WeakPasswordsReportComponent,
data: { titleId: 'weakPasswordsReport' },
},
],
},
],