1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

clear root scope vault data on logout

This commit is contained in:
Kyle Spearrin
2017-04-14 12:38:44 -04:00
parent 249d00b285
commit 6714390890

View File

@@ -1,7 +1,7 @@
angular angular
.module('bit.services') .module('bit.services')
.factory('authService', function (cryptoService, apiService, tokenService, $q, jwtHelper) { .factory('authService', function (cryptoService, apiService, tokenService, $q, jwtHelper, $rootScope) {
var _service = {}, var _service = {},
_userProfile = null; _userProfile = null;
@@ -74,6 +74,7 @@ angular
tokenService.clearToken(); tokenService.clearToken();
tokenService.clearRefreshToken(); tokenService.clearRefreshToken();
cryptoService.clearKeys(); cryptoService.clearKeys();
$rootScope.vaultFolders = $rootScope.vaultLogins = null;
_userProfile = null; _userProfile = null;
}; };