1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

remove constants service

This commit is contained in:
Kyle Spearrin
2018-04-19 14:10:28 -04:00
parent 2881d9c319
commit 91199d3dda
2 changed files with 2 additions and 4 deletions

2
jslib

Submodule jslib updated: 23917010a7...fae4530564

View File

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