Merge pull request #4236 from nextcloud/backport-3827-remove-double-password-confirmation
[stable11] Remove the double password confirmation on changing cron
This commit is contained in:
commit
aabcb043f3
|
@ -38,6 +38,7 @@ OCP.AppConfig = {
|
|||
return;
|
||||
}
|
||||
|
||||
options = options || {};
|
||||
$.ajax({
|
||||
type: method.toUpperCase(),
|
||||
url: OC.linkToOCS('apps/provisioning_api/api/v1', 2) + 'config/apps' + endpoint,
|
||||
|
|
|
@ -46,9 +46,12 @@ $(document).ready(function(){
|
|||
if($(this).is(':checked')){
|
||||
var mode = $(this).val();
|
||||
if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') {
|
||||
OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
|
||||
// clear cron errors on background job mode change
|
||||
OCP.AppConfig.deleteKey('core', 'cronErrors');
|
||||
OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode, {
|
||||
success: function() {
|
||||
// clear cron errors on background job mode change
|
||||
OCP.AppConfig.deleteKey('core', 'cronErrors');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue