1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 13:53:17 +00:00

inactive 2fa report

This commit is contained in:
Kyle Spearrin
2018-12-11 23:25:05 -05:00
parent b44eee8d81
commit ea032bf551
6 changed files with 210 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ import { BreachReportComponent } from './tools/breach-report.component';
import { ExportComponent } from './tools/export.component';
import { ExposedPasswordsReportComponent } from './tools/exposed-passwords-report.component';
import { ImportComponent } from './tools/import.component';
import { InactiveTwoFactorReportComponent } from './tools/inactive-two-factor-report.component';
import { PasswordGeneratorComponent } from './tools/password-generator.component';
import { ReusedPasswordsReportComponent } from './tools/reused-passwords-report.component';
import { ToolsComponent } from './tools/tools.component';
@@ -172,6 +173,11 @@ const routes: Routes = [
component: ExposedPasswordsReportComponent,
data: { titleId: 'exposedPasswordsReport' },
},
{
path: 'inactive-two-factor-report',
component: InactiveTwoFactorReportComponent,
data: { titleId: 'exposedPasswordsReport' },
},
],
},
],