diff options
| author | John Nduli | 2024-08-15 14:13:36 +0300 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2024-08-15 10:22:57 -0500 |
| commit | 263707c72f823d437106f579ad974775ad427ccc (patch) | |
| tree | b9ba17daf6eeb88710e60d710a68306f9d3196a0 /gn_auth/auth/authorisation/resources/groups/views.py | |
| parent | 60a1d17cc5d4a3d511deade2daa90be4973273a0 (diff) | |
| download | gn-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.py | 2 |
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: |
