adjust deps on folder service

This commit is contained in:
Kyle Spearrin 2018-06-25 15:03:57 -04:00
parent 6fbcfcad7b
commit e78b2880e0
3 changed files with 6 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit d75543e6c88b220d8e3c7d66fb768d39f9480587 Subproject commit 1aa774b99f73123b0bcf2654e4ba59fe95f39563

View File

@ -88,8 +88,8 @@ export class Main {
this.settingsService = new SettingsService(this.userService, this.storageService); this.settingsService = new SettingsService(this.userService, this.storageService);
this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService, this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService,
this.apiService, this.storageService, this.i18nService, this.platformUtilsService); this.apiService, this.storageService, this.i18nService, this.platformUtilsService);
this.folderService = new FolderService(this.cryptoService, this.userService, this.folderService = new FolderService(this.cryptoService, this.userService, this.apiService,
() => 'No Folder', this.apiService, this.storageService, this.i18nService); this.storageService, this.i18nService, this.cipherService);
this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService, this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService,
this.i18nService); this.i18nService);
this.lockService = new LockService(this.cipherService, this.folderService, this.collectionService, this.lockService = new LockService(this.cipherService, this.folderService, this.collectionService,

View File

@ -10,5 +10,8 @@
}, },
"emailTitle": { "emailTitle": {
"message": "Email" "message": "Email"
},
"noneFolder": {
"message": "No Folder"
} }
} }