mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update admin config settings
This commit is contained in:
parent
d64616af8a
commit
4348680907
1 changed files with 8 additions and 2 deletions
|
@ -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…
Reference in a new issue