fix: drop spurious **kwargs on tab_logs (FastAPI parsed it as required query)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
7444f90d6a
commit
120d14e918
1 changed files with 1 additions and 1 deletions
|
|
@ -661,7 +661,7 @@ def _collect_events(start_iso: str | None, end_iso: str | None) -> list[dict]:
|
|||
|
||||
|
||||
@app.get("/logs", response_class=HTMLResponse)
|
||||
def tab_logs(request: Request, **kwargs):
|
||||
def tab_logs(request: Request):
|
||||
u = current_user(request)
|
||||
if not u:
|
||||
return RedirectResponse("/login", status_code=303)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue