forked from mirror/pixelfed
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', {
|
axios.post('/i/admin/settings/config/restore', {
|
||||||
}).then(res => {
|
}).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', {
|
axios.post('/i/admin/settings/config', {
|
||||||
res: editor.getValue()
|
res: editor.getValue()
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = window.location.href;
|
swal('Success', 'Configuration successfully updated!', 'success');
|
||||||
|
setTimeout(function() {
|
||||||
|
window.location.href = window.location.href;
|
||||||
|
}, 3000);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue