fix: #8728, dont add admins to table

v1.18.x
Barış Soner Uşaklı 4 years ago
parent b3ed26ac2c
commit f259063f08

@ -48,5 +48,6 @@
"alert.confirm-copyToAllGroup": "Are you sure you wish to apply this group's privilege set to <strong>all categories</strong>?",
"alert.confirm-copyToChildren": "Are you sure you wish to apply this privilege set to <strong>all descendant (child) categories</strong>?",
"alert.confirm-copyToChildrenGroup": "Are you sure you wish to apply this group's privilege set to <strong>all descendant (child) categories</strong>?",
"alert.no-undo": "<em>This action cannot be undone.</em>"
"alert.no-undo": "<em>This action cannot be undone.</em>",
"alert.admin-warning": "Administrators implicitly get all privileges"
}

@ -256,6 +256,12 @@ define('admin/manage/privileges', [
inputEl.focus();
autocomplete.group(inputEl, function (ev, ui) {
if (ui.item.group.name === 'administrators') {
return app.alert({
type: 'warning',
message: '[[admin/manage/privileges:alert.admin-warning]]',
});
}
addGroupToCategory(ui.item.group.name, function () {
modal.modal('hide');
});

@ -21,8 +21,7 @@ define('autocomplete', function () {
handleOnSelect(input, onselect, event, ui);
},
source: function (request, response) {
params.query = params.query || request.term;
params.paginate = params.paginate || false;
params.query = request.term;
socket.emit('user.search', params, function (err, result) {
if (err) {
@ -51,8 +50,6 @@ define('autocomplete', function () {
}
$('.ui-autocomplete a').attr('data-ajaxify', 'false');
delete params.query;
delete params.paginate;
});
},
});

Loading…
Cancel
Save