1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

new folder service deps

This commit is contained in:
Kyle Spearrin 2018-06-25 15:20:18 -04:00
parent be29e6d847
commit a2a6d89908
2 changed files with 3 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 95337651fcb4d7fd56898cf14649497510e5d2a7
Subproject commit 0d2cd4c482c19ee3385677e957bbd99ae2eafbb6

View File

@ -89,8 +89,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);