diff --git a/endpoints/signup.post.py b/endpoints/signup.post.py index 77e4d09..67ab13c 100644 --- a/endpoints/signup.post.py +++ b/endpoints/signup.post.py @@ -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" }