Skip to content

Commit

Permalink
feat(frontier): list roles while listing members of org
Browse files Browse the repository at this point in the history
Signed-off-by: Kush Sharma <[email protected]>
  • Loading branch information
kushsharma committed Oct 19, 2023
1 parent eb488a5 commit 790cf6e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1909,10 +1909,18 @@ message ListOrganizationAdminsResponse {
message ListOrganizationUsersRequest {
string id = 1 [(validate.rules).string.min_len = 3];
string permission_filter = 2 [deprecated = true];

bool with_roles = 3;
}

message ListOrganizationUsersResponse {
repeated User users = 1;

message RolePair {
string user_id = 1;
repeated Role roles = 2;
}
repeated RolePair role_pairs = 2;
}

message AddOrganizationUsersRequest {
Expand Down

0 comments on commit 790cf6e

Please sign in to comment.