mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: auth error messages (#1376)
This commit is contained in:
parent
fef83d3153
commit
df41daf71b
@ -72,7 +72,7 @@ class SignUpEndpoint(BaseAPIView):
|
|||||||
# Check if the user already exists
|
# Check if the user already exists
|
||||||
if User.objects.filter(email=email).exists():
|
if User.objects.filter(email=email).exists():
|
||||||
return Response(
|
return Response(
|
||||||
{"error": "User already exist please sign in"},
|
{"error": "User with this email already exists"},
|
||||||
status=status.HTTP_400_BAD_REQUEST,
|
status=status.HTTP_400_BAD_REQUEST,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user