mirror of
https://github.com/bitwarden/browser
synced 2026-01-03 17:13:47 +00:00
* Move access-intelligence and reports files from tools to dirt folder for new ownership. Update imports for these files * Move bit-common/src/reports/risk-insights > dirt * Update codeowners file for dirt team ownership * Addressed linting issues by executing `npm run prettier` --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
73 lines
2.4 KiB
TypeScript
73 lines
2.4 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
import { RouterModule, Routes } from "@angular/router";
|
|
|
|
import { authGuard } from "@bitwarden/angular/auth/guards";
|
|
|
|
import { hasPremiumGuard } from "../../billing/guards/has-premium.guard";
|
|
|
|
import { BreachReportComponent } from "./pages/breach-report.component";
|
|
import { ExposedPasswordsReportComponent } from "./pages/exposed-passwords-report.component";
|
|
import { InactiveTwoFactorReportComponent } from "./pages/inactive-two-factor-report.component";
|
|
import { ReportsHomeComponent } from "./pages/reports-home.component";
|
|
import { ReusedPasswordsReportComponent } from "./pages/reused-passwords-report.component";
|
|
import { UnsecuredWebsitesReportComponent } from "./pages/unsecured-websites-report.component";
|
|
import { WeakPasswordsReportComponent } from "./pages/weak-passwords-report.component";
|
|
import { ReportsLayoutComponent } from "./reports-layout.component";
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: "",
|
|
component: ReportsLayoutComponent,
|
|
canActivate: [authGuard],
|
|
children: [
|
|
{
|
|
path: "",
|
|
pathMatch: "full",
|
|
component: ReportsHomeComponent,
|
|
data: { titleId: "reports", homepage: true },
|
|
},
|
|
{
|
|
path: "breach-report",
|
|
component: BreachReportComponent,
|
|
data: { titleId: "dataBreachReport" },
|
|
},
|
|
{
|
|
path: "reused-passwords-report",
|
|
component: ReusedPasswordsReportComponent,
|
|
data: { titleId: "reusedPasswordsReport" },
|
|
canActivate: [hasPremiumGuard()],
|
|
},
|
|
{
|
|
path: "unsecured-websites-report",
|
|
component: UnsecuredWebsitesReportComponent,
|
|
data: { titleId: "unsecuredWebsitesReport" },
|
|
canActivate: [hasPremiumGuard()],
|
|
},
|
|
{
|
|
path: "weak-passwords-report",
|
|
component: WeakPasswordsReportComponent,
|
|
data: { titleId: "weakPasswordsReport" },
|
|
canActivate: [hasPremiumGuard()],
|
|
},
|
|
{
|
|
path: "exposed-passwords-report",
|
|
component: ExposedPasswordsReportComponent,
|
|
data: { titleId: "exposedPasswordsReport" },
|
|
canActivate: [hasPremiumGuard()],
|
|
},
|
|
{
|
|
path: "inactive-two-factor-report",
|
|
component: InactiveTwoFactorReportComponent,
|
|
data: { titleId: "inactive2faReport" },
|
|
canActivate: [hasPremiumGuard()],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class ReportsRoutingModule {}
|