updated bit_lic/app-routing module (#6995)

This commit is contained in:
Ike 2023-11-28 09:45:13 -08:00 committed by GitHub
parent 9f81f66e2c
commit a342ce5d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,11 +1,14 @@
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { deepLinkGuard } from "@bitwarden/web-vault/app/auth/guards/deep-link.guard";
import { ProvidersModule } from "./admin-console/providers/providers.module";
const routes: Routes = [
{
path: "providers",
canActivate: [deepLinkGuard()],
loadChildren: () => ProvidersModule,
},
{