Update admin config settings

pull/1443/head
Daniel Supernault 6 years ago
parent d64616af8a
commit 4348680907
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -48,7 +48,10 @@
}
axios.post('/i/admin/settings/config/restore', {
}).then(res => {
window.location.href = window.location.href;
swal('Success', 'Configuration successfully restored!', 'success');
setTimeout(function() {
window.location.href = window.location.href;
}, 3000);
});
})
@ -62,7 +65,10 @@
axios.post('/i/admin/settings/config', {
res: editor.getValue()
}).then(res => {
window.location.href = window.location.href;
swal('Success', 'Configuration successfully updated!', 'success');
setTimeout(function() {
window.location.href = window.location.href;
}, 3000);
});
})
</script>

Loading…
Cancel
Save