Don't try to save the setting when its not an admin
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0277400618
commit
9ae715de75
|
@ -1083,11 +1083,15 @@ $(document).ready(function () {
|
||||||
$('#CheckboxLastLogin').click(function() {
|
$('#CheckboxLastLogin').click(function() {
|
||||||
if ($('#CheckboxLastLogin').is(':checked')) {
|
if ($('#CheckboxLastLogin').is(':checked')) {
|
||||||
$("#userlist .lastLogin").show();
|
$("#userlist .lastLogin").show();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
|
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .lastLogin").hide();
|
$("#userlist .lastLogin").hide();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#CheckboxEmailAddress').is(':checked')) {
|
if ($('#CheckboxEmailAddress').is(':checked')) {
|
||||||
|
@ -1097,11 +1101,15 @@ $(document).ready(function () {
|
||||||
$('#CheckboxEmailAddress').click(function() {
|
$('#CheckboxEmailAddress').click(function() {
|
||||||
if ($('#CheckboxEmailAddress').is(':checked')) {
|
if ($('#CheckboxEmailAddress').is(':checked')) {
|
||||||
$("#userlist .mailAddress").show();
|
$("#userlist .mailAddress").show();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .mailAddress").hide();
|
$("#userlist .mailAddress").hide();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#CheckboxUserBackend').is(':checked')) {
|
if ($('#CheckboxUserBackend').is(':checked')) {
|
||||||
|
@ -1111,11 +1119,15 @@ $(document).ready(function () {
|
||||||
$('#CheckboxUserBackend').click(function() {
|
$('#CheckboxUserBackend').click(function() {
|
||||||
if ($('#CheckboxUserBackend').is(':checked')) {
|
if ($('#CheckboxUserBackend').is(':checked')) {
|
||||||
$("#userlist .userBackend").show();
|
$("#userlist .userBackend").show();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#userlist .userBackend").hide();
|
$("#userlist .userBackend").hide();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
||||||
|
@ -1125,11 +1137,15 @@ $(document).ready(function () {
|
||||||
$('#CheckboxMailOnUserCreate').click(function() {
|
$('#CheckboxMailOnUserCreate').click(function() {
|
||||||
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
||||||
$("#newemail").show();
|
$("#newemail").show();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$("#newemail").hide();
|
$("#newemail").hide();
|
||||||
|
if (OC.isUserAdmin()) {
|
||||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'false');
|
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'false');
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// calculate initial limit of users to load
|
// calculate initial limit of users to load
|
||||||
|
|
Loading…
Reference in New Issue