Commit 8c97b2d2 authored by John Red Medrano's avatar John Red Medrano

Merge pull request #745 in RMS/api-main-service from core-dev-red-develop to RMSv2

* commit '9b819cd9':
  {dev bugfix} replace prompt message on username issue
parents d070f80e 9b819cd9
...@@ -92,7 +92,7 @@ class rms: ...@@ -92,7 +92,7 @@ class rms:
if username.count() >= 1: if username.count() >= 1:
return Response( return Response(
{ {
"message": f"{username.first().username} is already taken", "message": f"username {username.first().username} is already taken",
},status=status.HTTP_400_BAD_REQUEST },status=status.HTTP_400_BAD_REQUEST
) )
return function(self, request, *args, **kwargs) return function(self, request, *args, **kwargs)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment