1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00: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

Submodule jslib updated: 95337651fc...0d2cd4c482

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