From 91199d3dda43e0278d73eea08f5c6f63dd1ca775 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 19 Apr 2018 14:10:28 -0400 Subject: [PATCH] remove constants service --- jslib | 2 +- src/app/services/services.module.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/jslib b/jslib index 23917010a7..fae4530564 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 23917010a778e8464ba8b5f080d3306fc28a489e +Subproject commit fae453056465667ff770a11c1566e9bfc075265f diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 2765a8a297..53ab4ff6e2 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -76,7 +76,6 @@ const broadcasterService = new BroadcasterService(); const messagingService = new DesktopRendererMessagingService(broadcasterService); const storageService: StorageServiceAbstraction = new DesktopStorageService(); const secureStorageService: StorageServiceAbstraction = new DesktopRendererSecureStorageService(); -const constantsService = new ConstantsService({}, 0); const cryptoService = new CryptoService(storageService, secureStorageService); const tokenService = new TokenService(storageService); const appIdService = new AppIdService(storageService); @@ -99,8 +98,7 @@ const passwordGenerationService = new PasswordGenerationService(cryptoService, s const totpService = new TotpService(storageService); const containerService = new ContainerService(cryptoService, platformUtilsService); const authService = new AuthService(cryptoService, apiService, - userService, tokenService, appIdService, i18nService, platformUtilsService, constantsService, - messagingService); + userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService); const auditService = new AuditService(cryptoService); const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService);