1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

api service to audit service

This commit is contained in:
Kyle Spearrin
2018-07-07 23:52:06 -04:00
parent f4948b099f
commit 085b7c10fe
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 91081d9232...8ac3450d9e

View File

@@ -102,7 +102,7 @@ export class Main {
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);
this.authService = new AuthService(this.cryptoService, this.apiService, this.userService, this.tokenService,
this.appIdService, this.i18nService, this.platformUtilsService, this.messagingService, true);
this.auditService = new AuditService(this.cryptoFunctionService);
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
this.program = new Program(this);
}