From c2b0d025911a92f18a1e46c7486ad77f7d1b12b6 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 30 Apr 2025 12:34:18 +0000 Subject: [PATCH] feat: Update endpoint signup --- endpoints/signup.post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }