1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 15:11:40 +02:00

Merge pull request #384 from tdtgit/delete-link-confirm

Users should be warned before they delete users or links
This commit is contained in:
Evan McMahon 2018-03-29 18:30:55 +11:00 committed by GitHub
commit d39efe6aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,6 +264,7 @@ polr.controller('AdminCtrl', function($scope, $compile, $timeout) {
// Delete user
$scope.deleteUser = function($event, user_id) {
if(confirm("Are you sure to delete this user?")){
var el = $($event.target);
apiCall('admin/delete_user', {
@ -272,6 +273,7 @@ polr.controller('AdminCtrl', function($scope, $compile, $timeout) {
toastr.success('User successfully deleted.', 'Success');
$scope.reloadUserTables();
});
}
};
$scope.changeUserRole = function(role, user_id) {
@ -305,6 +307,7 @@ polr.controller('AdminCtrl', function($scope, $compile, $timeout) {
// Delete link
$scope.deleteLink = function($event, link_ending) {
if(confirm("Are you sure to delete this link?")){
var el = $($event.target);
apiCall('admin/delete_link', {
@ -313,6 +316,7 @@ polr.controller('AdminCtrl', function($scope, $compile, $timeout) {
toastr.success('Link successfully deleted.', 'Success');
$scope.reloadLinkTables();
});
}
};
// Disable and enable links