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

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

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);
}