1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-30 07:03:14 +00:00

Vault Timeout Policy (#1052)

This commit is contained in:
Oscar Hinton
2021-09-15 20:02:46 +02:00
committed by GitHub
parent da4af743f3
commit aa19e678f7
10 changed files with 116 additions and 18 deletions

View File

@@ -120,7 +120,7 @@ const sendService = new SendService(cryptoService, userService, apiService, file
const policyService = new PolicyService(userService, storageService);
const vaultTimeoutService = new VaultTimeoutService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, searchService, userService, tokenService,
null, async () => messagingService.send('logout', { expired: false }));
policyService, null, async () => messagingService.send('logout', { expired: false }));
const syncService = new SyncService(userService, apiService, settingsService,
folderService, cipherService, cryptoService, collectionService, storageService, messagingService, policyService,
sendService, async (expired: boolean) => messagingService.send('logout', { expired: expired }));