Skip to content

Commit

Permalink
fix bug in bondy_rbac:concat_role
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro M. Ramallo <[email protected]>
  • Loading branch information
aramallo committed Aug 29, 2024
1 parent b336db6 commit e2b51a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/bondy/src/bondy_rbac.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1355,6 +1355,9 @@ find_grants(Realm, KeyPattern, Type, Opts0) ->
concat_role(user, Name) ->
<<"user/", Name/binary>>;

concat_role(group, all) ->
<<"group/all">>;

concat_role(group, anonymous) ->
<<"group/anonymous">>;

Expand Down

0 comments on commit e2b51a1

Please sign in to comment.