Skip to content

Commit

Permalink
Fix erroneous permission in group access policy
Browse files Browse the repository at this point in the history
re #9604
  • Loading branch information
mdellweg committed Dec 10, 2021
1 parent 1e8203f commit d559a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulpcore/app/viewsets/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class GroupViewSet(
"action": ["list_roles", "add_role", "remove_role"],
"principal": "authenticated",
"effect": "allow",
"condition": ["has_model_or_obj_perms:auth.manage_roles_group"],
"condition": ["has_model_or_obj_perms:core.manage_roles_group"],
},
],
"creation_hooks": [
Expand Down

0 comments on commit d559a8e

Please sign in to comment.