Add filters in statistics view

This commit is contained in:
Ettore
2026-05-10 00:48:21 +02:00
parent ff097b31d1
commit 0264425383
4 changed files with 146 additions and 14 deletions

View File

@@ -137,3 +137,10 @@ class AccessLogResponse(BaseModel):
user_agent: Optional[str]
success: bool
error: Optional[str]
class StatsPage(BaseModel):
total: int
page: int
page_size: int
items: list[AccessLogResponse]