1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 07:43:16 +00:00

[EC-143] [BEEEP] Allow linking to ciphers (#1579)

Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
This commit is contained in:
Oscar Hinton
2022-04-25 15:41:44 +02:00
committed by GitHub
parent 705251fbe2
commit 0444b78ad1
30 changed files with 246 additions and 88 deletions

View File

@@ -45,6 +45,7 @@ import { PasswordRepromptService } from "../../services/passwordReprompt.service
import { StateService } from "../../services/state.service";
import { StateMigrationService } from "../../services/stateMigration.service";
import { WebPlatformUtilsService } from "../../services/webPlatformUtils.service";
import { HomeGuard } from "../guards/home.guard";
import { EventService } from "./event.service";
import { ModalService } from "./modal.service";
@@ -218,6 +219,7 @@ export function initFactory(
provide: PasswordRepromptServiceAbstraction,
useClass: PasswordRepromptService,
},
HomeGuard,
],
})
export class ServicesModule {}