fix(P1-1): auth.py forgot_password 硬编码 localhost 改为 settings.APP_BASE_URL
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
Deploy / Build Production Runtime Images (push) Has been cancelled
Deploy / Deploy Production (push) Has been cancelled
Deploy / Production Browser E2E (push) Has been cancelled

This commit is contained in:
CI Test
2026-06-28 10:25:03 +08:00
parent 6142b2478a
commit d1f2dbffa4
+1 -1
View File
@@ -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: