feat: Update endpoint signup

This commit is contained in:
Backend IM Bot 2025-04-30 12:34:18 +00:00
parent d41a8ca4bc
commit c2b0d02591

View File

@ -44,7 +44,7 @@ async def signup(
# Return token directly after registration
return {
"message": "User created successfully",
"message": "User created successfully, alright",
"access_token": create_access_token({"sub": new_user.id}),
"token_type": "bearer"
}