fix: proper sequence of backups

This commit is contained in:
Gavin D'souza 2020-07-22 15:53:10 +05:30
parent 220b56f0a0
commit 0ba3fb5a92

View file

@ -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
}