1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

clear search index

This commit is contained in:
Kyle Spearrin
2018-08-13 14:09:22 -04:00
parent a9db6c1d38
commit 09f4ee7f67
3 changed files with 7 additions and 5 deletions

View File

@@ -98,9 +98,9 @@ const cipherService = new CipherService(cryptoService, userService, settingsServ
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);
searchService = new SearchService(cipherService, platformUtilsService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, searchService, null);
const syncService = new SyncService(userService, apiService, settingsService,
folderService, cipherService, cryptoService, collectionService, storageService, messagingService,
async (expired: boolean) => messagingService.send('logout', { expired: expired }));