feat: download - download status aan logs toegevoegd

This commit is contained in:
kodi
2026-03-14 13:53:53 +01:00
parent 8ea2bd1498
commit 592b10acc2
8 changed files with 228 additions and 13 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ from contextlib import contextmanager
from datetime import datetime, timezone
from pathlib import Path
VALID_HISTORY_STATUSES = {"queued", "completed", "failed"}
VALID_HISTORY_OPERATIONS = {"mkdir", "rename", "delete", "copy", "move", "upload"}
VALID_HISTORY_STATUSES = {"queued", "completed", "failed", "requested", "ready", "preflight_failed"}
VALID_HISTORY_OPERATIONS = {"mkdir", "rename", "delete", "copy", "move", "upload", "download"}
class HistoryRepository: