From a342ce5d9a535e06cc801fee6fc8ad72f778530f Mon Sep 17 00:00:00 2001 From: Ike <137194738+ike-kottlowski@users.noreply.github.com> Date: Tue, 28 Nov 2023 09:45:13 -0800 Subject: [PATCH] updated bit_lic/app-routing module (#6995) --- bitwarden_license/bit-web/src/app/app-routing.module.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitwarden_license/bit-web/src/app/app-routing.module.ts b/bitwarden_license/bit-web/src/app/app-routing.module.ts index c32fe78cb6a..0f10da154b9 100644 --- a/bitwarden_license/bit-web/src/app/app-routing.module.ts +++ b/bitwarden_license/bit-web/src/app/app-routing.module.ts @@ -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, }, {