From cd9170ed246484f76b1bac4fcc798221246b5fc6 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Thu, 27 Jun 2024 21:44:35 -0700 Subject: [PATCH] fix: trusted sign in --- 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 761c569e8..e2d6a5036 100644 --- a/backend/apps/webui/routers/auths.py +++ b/backend/apps/webui/routers/auths.py @@ -154,6 +154,7 @@ async def signin(request: Request, response: Response, form_data: SigninForm): await signup( request, + response, SignupForm(email=admin_email, password=admin_password, name="User"), )