1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-10-08 05:37:37 +02:00

handle user upgrade path for lock options gracefully with a log out prompt. Fixed log out bug on lock page.

This commit is contained in:
Kyle Spearrin 2016-10-26 00:56:46 -04:00
parent eff7e5431b
commit a462f728d3
2 changed files with 36 additions and 16 deletions

View File

@ -7,7 +7,6 @@
$('#master-password').focus(); $('#master-password').focus();
$scope.logOut = function () { $scope.logOut = function () {
loginService.logOut(function () {
SweetAlert.swal({ SweetAlert.swal({
title: 'Log Out', title: 'Log Out',
text: 'Are you sure you want to log out?', text: 'Are you sure you want to log out?',
@ -22,7 +21,6 @@
}); });
} }
}); });
});
}; };
$scope.submit = function () { $scope.submit = function () {

View File

@ -34,7 +34,29 @@
} }
chrome.storage.local.set(obj, function () { chrome.storage.local.set(obj, function () {
cryptoService.getKeyHash(false, function (keyHash) {
if (keyHash) {
cryptoService.toggleKey(function () { }); cryptoService.toggleKey(function () { });
}
else {
SweetAlert.swal({
title: 'Logging out',
text: 'You\'ve recently updated to v1.2.0. You must re-log in to change your lock options.' +
'Do you want to log out now?',
showCancelButton: true,
confirmButtonText: 'Yes',
cancelButtonText: 'Cancel'
}, function (confirmed) {
if (confirmed) {
cryptoService.toggleKey(function () { });
loginService.logOut(function () {
$analytics.eventTrack('Logged Out');
$state.go('home');
});
}
});
}
});
}); });
}; };