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:51:05 -04:00
parent a658f82d4e
commit 72712e1c36
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 91081d9232...8ac3450d9e

View File

@@ -105,7 +105,7 @@ const containerService = new ContainerService(cryptoService, platformUtilsServic
const authService = new AuthService(cryptoService, apiService, const authService = new AuthService(cryptoService, apiService,
userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService); userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService);
const exportService = new ExportService(folderService, cipherService, apiService); const exportService = new ExportService(folderService, cipherService, apiService);
const auditService = new AuditService(cryptoFunctionService); const auditService = new AuditService(cryptoFunctionService, apiService);
const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService); const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService);
containerService.attachToWindow(window); containerService.attachToWindow(window);