removing favicon route

This commit is contained in:
Gamosoft 2025-11-14 17:45:53 +01:00
parent 4b8d65134e
commit 85d9f1c98c
1 changed files with 0 additions and 7 deletions

View File

@ -192,13 +192,6 @@ async def logout(request: Request):
request.session.clear()
return RedirectResponse(url="/login", status_code=303)
@app.get("/favicon.ico")
async def favicon():
"""Serve favicon (redirect to SVG)"""
return RedirectResponse(url="/static/favicon.svg", status_code=301)
# ============================================================================
# Routers with Authentication
# ============================================================================