1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-29 11:05:01 +02:00

support for logout notification

This commit is contained in:
Kyle Spearrin 2018-08-28 08:38:34 -04:00
parent 81ddce6e20
commit b118a614be
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 3c43265878892adab985f6fc9b1b4270ae27aaa2
Subproject commit 45da8aa9eb4dd7e12c9fa67ed09189bc4d5ed2f1

View File

@ -113,7 +113,7 @@ const authService = new AuthService(cryptoService, apiService,
const exportService = new ExportService(folderService, cipherService, apiService);
const auditService = new AuditService(cryptoFunctionService, apiService);
const notificationsService = new NotificationsService(userService, syncService, appIdService,
apiService, cryptoService);
apiService, cryptoService, async () => messagingService.send('logout', { expired: true }));
const environmentService = new EnvironmentService(apiService, storageService, notificationsService);
const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService);