Merge pull request #3290 from dpinse/test

Fix confirmation for removing 2FA and deauthing sessions in admin panel
This commit is contained in:
Mathijs van Veluw 2023-03-01 06:38:28 +01:00 committed by GitHub
commit 337cbfaf22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,8 @@ function remove2fa(event) {
event.preventDefault();
event.stopPropagation();
const id = event.target.parentNode.dataset.vwUserUuid;
if (!id) {
const email = event.target.parentNode.dataset.vwUserEmail;
if (!id || !email) {
alert("Required parameters not found!");
return false;
}
@ -45,7 +46,8 @@ function deauthUser(event) {
event.preventDefault();
event.stopPropagation();
const id = event.target.parentNode.dataset.vwUserUuid;
if (!id) {
const email = event.target.parentNode.dataset.vwUserEmail;
if (!id || !email) {
alert("Required parameters not found!");
return false;
}