1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-25 00:53:22 +00:00

initial prototype commit

This commit is contained in:
Tom
2026-01-15 19:09:47 -05:00
parent 16e6756643
commit cb5f2f0a73
29 changed files with 3234 additions and 6 deletions

View File

@@ -505,7 +505,11 @@ const safeProviders: SafeProvider[] = [
}),
safeProvider({
provide: AuditServiceAbstraction,
useClass: AuditService,
useFactory: (
cryptoFunctionService: CryptoFunctionServiceAbstraction,
apiService: ApiServiceAbstraction,
hibpApiService: HibpApiService,
) => new AuditService(cryptoFunctionService, apiService, hibpApiService),
deps: [CryptoFunctionServiceAbstraction, ApiServiceAbstraction, HibpApiService],
}),
safeProvider({