1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-16 13:55:52 +02:00

api service to audit service

This commit is contained in:
Kyle Spearrin 2018-07-07 23:51:35 -04:00
parent 174a7c7dd2
commit c4e13f8817
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 91081d92327da22ab3be88a60f8b71be26933370
Subproject commit 8ac3450d9eee10c54bc35dd931a70bf82f97d0a5

View File

@ -147,7 +147,7 @@ export default class MainBackground {
this.autofillService = new AutofillService(this.cipherService, this.tokenService,
this.totpService);
this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService);
this.auditService = new AuditService(cryptoFunctionService);
this.auditService = new AuditService(cryptoFunctionService, this.apiService);
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);
this.analytics = new Analytics(window, () => BrowserApi.gaFilter(), this.platformUtilsService,
this.storageService, this.appIdService);