From d1f2dbffa43efe94d2a77b92f9319ea99d979992 Mon Sep 17 00:00:00 2001 From: CI Test Date: Sun, 28 Jun 2026 10:25:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(P1-1):=20auth.py=20forgot=5Fpassword=20?= =?UTF-8?q?=E7=A1=AC=E7=BC=96=E7=A0=81=20localhost=20=E6=94=B9=E4=B8=BA=20?= =?UTF-8?q?settings.APP=5FBASE=5FURL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/api/app/api/routes/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/app/api/routes/auth.py b/apps/api/app/api/routes/auth.py index eacf9dc94..1ded9dd1a 100755 --- a/apps/api/app/api/routes/auth.py +++ b/apps/api/app/api/routes/auth.py @@ -206,7 +206,7 @@ async def forgot_password( ): success, error = RequestPasswordResetUseCase( user_repository=user_repository, - base_url="http://localhost:3000", + base_url=settings.APP_BASE_URL, email_service=email_service, ).execute(PasswordResetUseCaseRequest(email=request.email)) if not success: