auto-commit for 329a5f8d-6c9a-420b-be80-2baba2957ab8

This commit is contained in:
emergent-agent-e1
2025-11-08 18:17:03 +00:00
parent 1c4b34aa53
commit 4313bc4aa7
1073 changed files with 1080 additions and 1 deletions
+8 -1
View File
@@ -318,10 +318,17 @@ async def signup(request: SignUpRequest):
Sign up a new user with Supabase
"""
try:
# Sign up with Supabase Auth
# Sign up with Supabase Auth (auto-confirm for development)
auth_response = supabase.auth.sign_up({
"email": request.email,
"password": request.password,
"options": {
"email_redirect_to": None,
"data": {
"first_name": request.first_name,
"last_name": request.last_name,
}
}
})
if not auth_response.user: