From 7b80505f69c45a19289dcc5f6038aa33a3d905b5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 7 Jul 2018 23:50:06 -0400 Subject: [PATCH] api service to audit service --- src/app/services/services.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index f7180771e3..287150039c 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -106,7 +106,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, () => platformUtilsService.isDev(), platformUtilsService, storageService, appIdService);