Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(frontier): list roles while listing members of org #314

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1911,10 +1911,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
Loading