feature(backups): a graphql call to invalidate cache

restic-rewrite-api
Houkime 2023-06-01 16:12:32 +00:00
parent 50952d688a
commit 9a94f7624e
2 changed files with 10 additions and 0 deletions

View File

@ -269,6 +269,10 @@ class Backups:
return snap
@staticmethod
def force_snapshot_reload():
Backups.sync_all_snapshots()
@staticmethod
def sync_all_snapshots():
upstream_snapshots = Backups.provider().backuper.get_snapshots()

View File

@ -90,3 +90,9 @@ class BackupMutations:
restore_snapshot(snap)
return GenericJobMutationReturn()
@strawberry.mutation(permission_classes=[IsAuthenticated])
def force_snapshots_reload(self) -> GenericMutationReturn:
"""Force snapshots reload"""
Backups.force_snapshot_reload()
return GenericMutationReturn()