1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-27 12:26:38 +01:00

update folder service deps

This commit is contained in:
Kyle Spearrin 2018-06-25 14:55:30 -04:00
parent cd48afd415
commit d41d310ed6
2 changed files with 3 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit e5db01083cc13df3696bb30562a83d729280ac03
Subproject commit 1aa774b99f73123b0bcf2654e4ba59fe95f39563

View File

@ -91,8 +91,8 @@ const userService = new UserService(tokenService, storageService);
const settingsService = new SettingsService(userService, storageService);
const cipherService = new CipherService(cryptoService, userService, settingsService,
apiService, storageService, i18nService, platformUtilsService);
const folderService = new FolderService(cryptoService, userService,
() => i18nService.t('noneFolder'), apiService, storageService, i18nService);
const folderService = new FolderService(cryptoService, userService, apiService, storageService,
i18nService, cipherService);
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, null);