mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
user service to lock service for auth fix
This commit is contained in:
parent
f02debb03b
commit
cd7b9bd449
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit d8f9177c03549667cf6d1e5f30536d010acc7b7d
|
Subproject commit fc1a73c9f2ef2c18f05dfebb5cf80ce84520d118
|
@ -103,7 +103,7 @@ const folderService = new FolderService(cryptoService, userService, apiService,
|
|||||||
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
|
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
|
||||||
searchService = new SearchService(cipherService, platformUtilsService);
|
searchService = new SearchService(cipherService, platformUtilsService);
|
||||||
const lockService = new LockService(cipherService, folderService, collectionService,
|
const lockService = new LockService(cipherService, folderService, collectionService,
|
||||||
cryptoService, platformUtilsService, storageService, messagingService, searchService, null);
|
cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, null);
|
||||||
const syncService = new SyncService(userService, apiService, settingsService,
|
const syncService = new SyncService(userService, apiService, settingsService,
|
||||||
folderService, cipherService, cryptoService, collectionService, storageService, messagingService,
|
folderService, cipherService, cryptoService, collectionService, storageService, messagingService,
|
||||||
async (expired: boolean) => messagingService.send('logout', { expired: expired }));
|
async (expired: boolean) => messagingService.send('logout', { expired: expired }));
|
||||||
|
Loading…
Reference in New Issue
Block a user