From 72712e1c366cc1da47d20b67d32c7bc5f7e4d115 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 7 Jul 2018 23:51:05 -0400 Subject: [PATCH] api service to audit service --- jslib | 2 +- src/app/services.module.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 91081d92327..8ac3450d9ee 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 91081d92327da22ab3be88a60f8b71be26933370 +Subproject commit 8ac3450d9eee10c54bc35dd931a70bf82f97d0a5 diff --git a/src/app/services.module.ts b/src/app/services.module.ts index bc64eefab72..0648c82def4 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -105,7 +105,7 @@ const containerService = new ContainerService(cryptoService, platformUtilsServic const authService = new AuthService(cryptoService, apiService, userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService); 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); containerService.attachToWindow(window);