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
a62530d7c1
commit
274964f3b7
|
@ -986,10 +986,14 @@ $(document).ready(function () {
|
|||
$('#CheckboxLastLogin').click(function() {
|
||||
if ($('#CheckboxLastLogin').is(':checked')) {
|
||||
$("#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 {
|
||||
$("#userlist .lastLogin").hide();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -1000,10 +1004,14 @@ $(document).ready(function () {
|
|||
$('#CheckboxEmailAddress').click(function() {
|
||||
if ($('#CheckboxEmailAddress').is(':checked')) {
|
||||
$("#userlist .mailAddress").show();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
|
||||
}
|
||||
} else {
|
||||
$("#userlist .mailAddress").hide();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -1014,10 +1022,14 @@ $(document).ready(function () {
|
|||
$('#CheckboxUserBackend').click(function() {
|
||||
if ($('#CheckboxUserBackend').is(':checked')) {
|
||||
$("#userlist .userBackend").show();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
|
||||
}
|
||||
} else {
|
||||
$("#userlist .userBackend").hide();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -1028,10 +1040,14 @@ $(document).ready(function () {
|
|||
$('#CheckboxMailOnUserCreate').click(function() {
|
||||
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
|
||||
$("#newemail").show();
|
||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
||||
if (OC.isUserAdmin()) {
|
||||
OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
|
||||
}
|
||||
} else {
|
||||
$("#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