Add latest changes
Dieser Commit ist enthalten in:
@@ -219,7 +219,7 @@ function createBackup(type) {
|
||||
btn.disabled = true;
|
||||
btn.innerHTML = '<span class="spinner-border spinner-border-sm"></span> Erstelle...';
|
||||
|
||||
fetch('/backups/backup/create', {
|
||||
fetch('/admin/backup/create', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
@@ -249,7 +249,7 @@ function createBackup(type) {
|
||||
}
|
||||
|
||||
function downloadFromGitHub(backupId) {
|
||||
window.location.href = `/backups/backup/download/${backupId}?from_github=true`;
|
||||
window.location.href = `/admin/backup/download/${backupId}?from_github=true`;
|
||||
}
|
||||
|
||||
function showRestoreModal(backupId) {
|
||||
@@ -261,7 +261,7 @@ function showRestoreModal(backupId) {
|
||||
function confirmRestore() {
|
||||
const encryptionKey = document.getElementById('encryptionKey').value;
|
||||
|
||||
fetch(`/backups/backup/restore/${selectedBackupId}`, {
|
||||
fetch(`/admin/backup/restore/${selectedBackupId}`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren