Skip to content

Commit

Permalink
feat(frontier): list group users with their permission capabilities (#…
Browse files Browse the repository at this point in the history
…305)

Signed-off-by: Kush Sharma <[email protected]>
  • Loading branch information
kushsharma authored Sep 12, 2023
1 parent 6b8c2dc commit 57e0171
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2289,10 +2289,20 @@ message UpdateGroupRequest {
message ListGroupUsersRequest {
string id = 1;
string org_id = 2;

// list of permissions needs to be checked against each member
// of the group as principal and group as subject
repeated string with_member_permissions = 3;
}

message ListGroupUsersResponse {
repeated User users = 1;

message AccessPair {
string user_id = 1;
repeated string permissions = 2;
}
repeated AccessPair access_pairs = 2;
}

message EnableGroupRequest {
Expand Down

0 comments on commit 57e0171

Please sign in to comment.