Browse Source
Add confirmation for removing 2FA and deauth sessions in admin panel
pull/3282/head
Jonathan Elias Caicedo
2 years ago
No known key found for this signature in database
GPG Key ID: CC0B4FD8C1370233
1 changed files with
14 additions and
8 deletions
-
src/static/scripts/admin_users.js
|
@ -32,10 +32,13 @@ function remove2fa(event) { |
|
|
alert("Required parameters not found!"); |
|
|
alert("Required parameters not found!"); |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
_post(`${BASE_URL}/admin/users/${id}/remove-2fa`, |
|
|
const confirmed = confirm(`Are you sure you want to remove 2FA for "${email}"?`); |
|
|
"2FA removed correctly", |
|
|
if (confirmed) { |
|
|
"Error removing 2FA" |
|
|
_post(`${BASE_URL}/admin/users/${id}/remove-2fa`, |
|
|
); |
|
|
"2FA removed correctly", |
|
|
|
|
|
"Error removing 2FA" |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function deauthUser(event) { |
|
|
function deauthUser(event) { |
|
@ -46,10 +49,13 @@ function deauthUser(event) { |
|
|
alert("Required parameters not found!"); |
|
|
alert("Required parameters not found!"); |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
_post(`${BASE_URL}/admin/users/${id}/deauth`, |
|
|
const confirmed = confirm(`Are you sure you want to deauthorize sessions for "${email}"?`); |
|
|
"Sessions deauthorized correctly", |
|
|
if (confirmed) { |
|
|
"Error deauthorizing sessions" |
|
|
_post(`${BASE_URL}/admin/users/${id}/deauth`, |
|
|
); |
|
|
"Sessions deauthorized correctly", |
|
|
|
|
|
"Error deauthorizing sessions" |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function disableUser(event) { |
|
|
function disableUser(event) { |
|
|