Merge pull request #5480 from nextcloud/backport-5459-group-admins-change-settings
[stable12] Don't try to save the setting when its not an admin
This commit is contained in:
commit
6f252aa04a
|
@ -1062,17 +1062,15 @@ $(document).ready(function () {
|
||||||
// Option to display/hide the "Storage location" column
|
// Option to display/hide the "Storage location" column
|
||||||
$('#CheckboxStorageLocation').click(function() {
|
$('#CheckboxStorageLocation').click(function() {
|
||||||
if ($('#CheckboxStorageLocation').is(':checked')) {
|
if ($('#CheckboxStorageLocation').is(':checked')) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'true', {
|
$("#userlist .storageLocation").show();
|
||||||
success: function () {
|
if (OC.isUserAdmin()) {
|
||||||
$("#userlist .storageLocation").show();
|
OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'true');
|
||||||
}
|
}
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'false', {
|
$("#userlist .storageLocation").hide();
|
||||||
success: function () {
|
if (OC.isUserAdmin()) {
|
||||||
$("#userlist .storageLocation").hide();
|
OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'false');
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1083,10 +1081,14 @@ $(document).ready(function () {
|
||||||
$('#CheckboxLastLogin').click(function() {
|
$('#CheckboxLastLogin').click(function() {
|
||||||
if ($('#CheckboxLastLogin').is(':checked')) {
|
if ($('#CheckboxLastLogin').is(':checked')) {
|
||||||
$("#userlist .lastLogin").show();
|
$("#userlist .lastLogin").show();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .lastLogin").hide();
|
$("#userlist .lastLogin").hide();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1097,10 +1099,14 @@ $(document).ready(function () {
|
||||||
$('#CheckboxEmailAddress').click(function() {
|
$('#CheckboxEmailAddress').click(function() {
|
||||||
if ($('#CheckboxEmailAddress').is(':checked')) {
|
if ($('#CheckboxEmailAddress').is(':checked')) {
|
||||||
$("#userlist .mailAddress").show();
|
$("#userlist .mailAddress").show();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .mailAddress").hide();
|
$("#userlist .mailAddress").hide();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1111,10 +1117,14 @@ $(document).ready(function () {
|
||||||
$('#CheckboxUserBackend').click(function() {
|
$('#CheckboxUserBackend').click(function() {
|
||||||
if ($('#CheckboxUserBackend').is(':checked')) {
|
if ($('#CheckboxUserBackend').is(':checked')) {
|
||||||
$("#userlist .userBackend").show();
|
$("#userlist .userBackend").show();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .userBackend").hide();
|
$("#userlist .userBackend").hide();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1125,10 +1135,14 @@ $(document).ready(function () {
|
||||||
$('#CheckboxMailOnUserCreate').click(function() {
|
$('#CheckboxMailOnUserCreate').click(function() {
|
||||||
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
||||||
$("#newemail").show();
|
$("#newemail").show();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#newemail").hide();
|
$("#newemail").hide();
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'false');
|
if (OC.isUserAdmin()) {
|
||||||
|
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'false');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue