aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authorisation/resources/groups/views.py
diff options
context:
space:
mode:
authorJohn Nduli2024-08-15 14:13:36 +0300
committerFrederick Muriuki Muriithi2024-08-15 10:22:57 -0500
commit263707c72f823d437106f579ad974775ad427ccc (patch)
treeb9ba17daf6eeb88710e60d710a68306f9d3196a0 /gn_auth/auth/authorisation/resources/groups/views.py
parent60a1d17cc5d4a3d511deade2daa90be4973273a0 (diff)
downloadgn-auth-263707c72f823d437106f579ad974775ad427ccc.tar.gz
fix: bugs in masquerade api
Diffstat (limited to 'gn_auth/auth/authorisation/resources/groups/views.py')
-rw-r--r--gn_auth/auth/authorisation/resources/groups/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/resources/groups/views.py b/gn_auth/auth/authorisation/resources/groups/views.py
index 401be00..f98783b 100644
--- a/gn_auth/auth/authorisation/resources/groups/views.py
+++ b/gn_auth/auth/authorisation/resources/groups/views.py
@@ -48,7 +48,7 @@ def create_group():
with require_oauth.acquire("profile group") as the_token:
group_name=request_json().get("group_name", "").strip()
if not bool(group_name):
- raise GroupCreationError("Could not create the group.")
+ raise GroupCreationError(f"Could not create the group. Invalid Group name provided was `{group_name}`")
db_uri = current_app.config["AUTH_DB"]
with db.connection(db_uri) as conn: