(feat) admin ui custom branding

This commit is contained in:
ishaan-jaff 2024-02-21 17:34:42 -08:00
parent 3064186ba7
commit 15e0d3c1d8
26 changed files with 26 additions and 27 deletions

View file

@ -5050,7 +5050,7 @@ def get_image():
"""Get logo to show on admin UI"""
from fastapi.responses import FileResponse
logo_path = os.getenv("UI_LOGO_PATH", "./logo.png")
logo_path = os.getenv("UI_LOGO_PATH", "./logo.jpg")
verbose_proxy_logger.debug(f"Reading logo from {logo_path}")
return FileResponse(path=logo_path)