fix: proper sequence of backups
This commit is contained in:
parent
220b56f0a0
commit
0ba3fb5a92
1 changed files with 2 additions and 2 deletions
|
|
@ -224,8 +224,8 @@ def fetch_latest_backups(with_files=True, recent=3):
|
|||
odb.get_backup(older_than=recent, ignore_files=not with_files)
|
||||
|
||||
return {
|
||||
"database": odb.backup_path_files,
|
||||
"public": odb.backup_path_db,
|
||||
"database": odb.backup_path_db,
|
||||
"public": odb.backup_path_files,
|
||||
"private": odb.backup_path_private_files,
|
||||
"config": odb.site_config_backup_path
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue