feat: show update service status in UI

This commit is contained in:
2026-01-15 11:06:54 +01:00
parent 55e452b6a2
commit f513d46d08
22 changed files with 351 additions and 2 deletions

View File

@ -73,3 +73,11 @@ class UpdateLogEntry(BaseModel):
version: Optional[str] = None
error: Optional[str] = None
device_id: Optional[str] = None
class UpdateServiceStatus(BaseModel):
url: str
reachable: bool
status_code: Optional[int] = None
error: Optional[str] = None
checked_url: str