From feba50f68cc4cfb7474c91ee71d009fa375df266 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Thu, 27 Jun 2024 21:43:19 -0700 Subject: [PATCH] fix: WEBUI_AUTH --- backend/apps/webui/routers/auths.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/apps/webui/routers/auths.py b/backend/apps/webui/routers/auths.py index 1be79d259..761c569e8 100644 --- a/backend/apps/webui/routers/auths.py +++ b/backend/apps/webui/routers/auths.py @@ -136,6 +136,7 @@ async def signin(request: Request, response: Response, form_data: SigninForm): if not Users.get_user_by_email(trusted_email.lower()): await signup( request, + response, SignupForm( email=trusted_email, password=str(uuid.uuid4()), name=trusted_name ),