From 7c553f128777e55389e56b414234863af76423c3 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Wed, 27 Dec 2023 12:06:22 -0800 Subject: [PATCH] feat: improved error message for signup --- backend/apps/web/routers/auths.py | 2 +- backend/constants.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/apps/web/routers/auths.py b/backend/apps/web/routers/auths.py index 0fb34d472..02b77248c 100644 --- a/backend/apps/web/routers/auths.py +++ b/backend/apps/web/routers/auths.py @@ -104,7 +104,7 @@ async def signup(form_data: SignupForm): "profile_image_url": user.profile_image_url, } else: - raise HTTPException(500, detail=ERROR_MESSAGES.DEFAULT()) + raise HTTPException(500, detail=ERROR_MESSAGES.CREATE_USER_ERROR) except Exception as err: raise HTTPException(500, detail=ERROR_MESSAGES.DEFAULT(err)) else: diff --git a/backend/constants.py b/backend/constants.py index e5b7b1e43..06d67eec5 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -11,12 +11,11 @@ class ERROR_MESSAGES(str, Enum): DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}" ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now." - + CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance." EMAIL_TAKEN = "Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew." USERNAME_TAKEN = ( "Uh-oh! This username is already registered. Please choose another username." ) - INVALID_TOKEN = ( "Your session has expired or the token is invalid. Please sign in again." )