1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-26 10:36:19 +02:00

clear collections on logout

This commit is contained in:
Kyle Spearrin 2018-05-15 23:26:53 -04:00
parent 786549c2c2
commit 42ff83c2d3
2 changed files with 4 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 9de9c1655c9a325443fdabfc74630f06e20f8d9a
Subproject commit 7112911cb89bcf9bf9b9de32cb05ec2d3f78e3fc

View File

@ -29,6 +29,7 @@ import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
import { AuthService } from 'jslib/abstractions/auth.service';
import { CipherService } from 'jslib/abstractions/cipher.service';
import { CollectionService } from 'jslib/abstractions/collection.service';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { FolderService } from 'jslib/abstractions/folder.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
@ -81,7 +82,7 @@ export class AppComponent implements OnInit {
private platformUtilsService: PlatformUtilsService, private ngZone: NgZone,
private lockService: LockService, private storageService: StorageService,
private cryptoService: CryptoService, private componentFactoryResolver: ComponentFactoryResolver,
private messagingService: MessagingService) { }
private messagingService: MessagingService, private collectionService: CollectionService) { }
ngOnInit() {
this.ngZone.runOutsideAngular(() => {
@ -157,6 +158,7 @@ export class AppComponent implements OnInit {
this.settingsService.clear(userId),
this.cipherService.clear(userId),
this.folderService.clear(userId),
this.collectionService.clear(userId),
this.passwordGenerationService.clear(),
]);