1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00

duo 2fa config and login with web sdk

This commit is contained in:
Kyle Spearrin
2017-06-21 15:17:44 -04:00
parent 2f3035a08f
commit ca9a0b072e
14 changed files with 262 additions and 12 deletions

View File

@@ -56,6 +56,7 @@
$scope.disableLoading = false;
$analytics.eventTrack('Disabled Two-step YubiKey');
toastr.success('YubiKey has been disabled.');
$scope.enabled = response.Enabled;
$scope.close();
}, function (response) {
toastr.error('Failed to disable.');
@@ -102,6 +103,6 @@
}
$scope.close = function () {
$uibModalInstance.close();
$uibModalInstance.close($scope.enabled);
};
});