1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-27 03:53:00 +02: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

@ -1 +1 @@
Subproject commit 23917010a778e8464ba8b5f080d3306fc28a489e
Subproject commit fae453056465667ff770a11c1566e9bfc075265f

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