feat: Update endpoint signup

This commit is contained in:
Backend IM Bot 2025-03-26 16:29:43 +00:00
parent 70fc600d0b
commit 705a68ddee

View File

@ -18,7 +18,7 @@ async def signup(
if db_user:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Email already registered"
detail="Email already exists"
)
hashed_password = get_password_hash(user_data.password)