diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 0c93903147..73524d9851 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -6,6 +6,7 @@ on: branches: - main - dev + - changes tags: - v* diff --git a/backend/apps/webui/routers/auths.py b/backend/apps/webui/routers/auths.py index 1858dfaf16..2ebb09ccae 100644 --- a/backend/apps/webui/routers/auths.py +++ b/backend/apps/webui/routers/auths.py @@ -132,7 +132,7 @@ async def signin(request: Request, response: Response, form_data: SigninForm): trusted_email = decode_token_from_alb(jwt)["email"] trusted_email = trusted_email.lower() trusted_name = trusted_email - + if WEBUI_AUTH_TRUSTED_NAME_HEADER: trusted_name = request.headers.get( WEBUI_AUTH_TRUSTED_NAME_HEADER, trusted_email diff --git a/backend/static/favicon.png b/backend/static/favicon.png index 2b20747808..fa631112ae 100644 Binary files a/backend/static/favicon.png and b/backend/static/favicon.png differ diff --git a/backend/static/logo.png b/backend/static/logo.png index 519af1db62..362c2540c6 100644 Binary files a/backend/static/logo.png and b/backend/static/logo.png differ diff --git a/backend/static/splash.png b/backend/static/splash.png index 389196ca6a..87a86b7208 100644 Binary files a/backend/static/splash.png and b/backend/static/splash.png differ diff --git a/backend/utils/utils.py b/backend/utils/utils.py index 57ea6939e1..486bff0b9b 100644 --- a/backend/utils/utils.py +++ b/backend/utils/utils.py @@ -54,7 +54,7 @@ def decode_token(token: str) -> Optional[dict]: except Exception: return None - + def decode_token_from_alb(token: str) -> Optional[dict]: try: payload = jwt.decode(token, options={"verify_signature": False}) diff --git a/static/favicon.png b/static/favicon.png index 2b20747808..fa631112ae 100644 Binary files a/static/favicon.png and b/static/favicon.png differ diff --git a/static/static/favicon.png b/static/static/favicon.png index 2b20747808..fa631112ae 100644 Binary files a/static/static/favicon.png and b/static/static/favicon.png differ diff --git a/static/static/splash-dark.png b/static/static/splash-dark.png index 202c03f8e4..87a86b7208 100644 Binary files a/static/static/splash-dark.png and b/static/static/splash-dark.png differ diff --git a/static/static/splash.png b/static/static/splash.png index 389196ca6a..87a86b7208 100644 Binary files a/static/static/splash.png and b/static/static/splash.png differ