1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

Initial work

This commit is contained in:
gbubemismith
2023-07-25 15:45:11 -04:00
parent ca5b033cfd
commit 7daf604e3a
12 changed files with 126 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
import { Component, NgZone } from "@angular/core";
import { Router } from "@angular/router";
import { ActivatedRoute, Router } from "@angular/router";
import { LockComponent as BaseLockComponent } from "@bitwarden/angular/auth/components/lock.component";
import { DialogServiceAbstraction } from "@bitwarden/angular/services/dialog";
@@ -43,7 +43,8 @@ export class LockComponent extends BaseLockComponent {
policyApiService: PolicyApiServiceAbstraction,
policyService: InternalPolicyService,
passwordStrengthService: PasswordStrengthServiceAbstraction,
dialogService: DialogServiceAbstraction
dialogService: DialogServiceAbstraction,
route: ActivatedRoute
) {
super(
router,
@@ -62,7 +63,8 @@ export class LockComponent extends BaseLockComponent {
policyApiService,
policyService,
passwordStrengthService,
dialogService
dialogService,
route
);
}