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

inactive 2fa report for orgs

This commit is contained in:
Kyle Spearrin
2018-12-14 14:22:30 -05:00
parent 392a90c02c
commit 9b7c0288d4
4 changed files with 57 additions and 3 deletions

View File

@@ -37,6 +37,9 @@ import {
ExposedPasswordsReportComponent as OrgExposedPasswordsReportComponent,
} from './organizations/tools/exposed-passwords-report.component';
import { ImportComponent as OrgImportComponent } from './organizations/tools/import.component';
import {
InactiveTwoFactorReportComponent as OrgInactiveTwoFactorReportComponent,
} from './organizations/tools/inactive-two-factor-report.component';
import { ToolsComponent as OrgToolsComponent } from './organizations/tools/tools.component';
import { VaultComponent as OrgVaultComponent } from './organizations/vault/vault.component';
@@ -179,7 +182,7 @@ const routes: Routes = [
{
path: 'inactive-two-factor-report',
component: InactiveTwoFactorReportComponent,
data: { titleId: 'exposedPasswordsReport' },
data: { titleId: 'inactive2faReport' },
},
],
},
@@ -206,6 +209,11 @@ const routes: Routes = [
component: OrgExposedPasswordsReportComponent,
data: { titleId: 'exposedPasswordsReport' },
},
{
path: 'inactive-two-factor-report',
component: OrgInactiveTwoFactorReportComponent,
data: { titleId: 'inactive2faReport' },
},
],
},
{