Skip to content
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
12 changes: 12 additions & 0 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ service FrontierService {

rpc RemoveGroupUser(RemoveGroupUserRequest) returns (RemoveGroupUserResponse) {}

rpc SetGroupMemberRole(SetGroupMemberRoleRequest) returns (SetGroupMemberRoleResponse) {}

rpc EnableGroup(EnableGroupRequest) returns (EnableGroupResponse) {}

rpc DisableGroup(DisableGroupRequest) returns (DisableGroupResponse) {}
Expand Down Expand Up @@ -2176,6 +2178,16 @@ message RemoveGroupUserRequest {

message RemoveGroupUserResponse {}

message SetGroupMemberRoleRequest {
string group_id = 1 [(buf.validate.field).string.uuid = true];
string org_id = 2 [(buf.validate.field).string.uuid = true];
string principal_id = 3 [(buf.validate.field).string.uuid = true];
string principal_type = 4 [(buf.validate.field).string.min_len = 1];
string role_id = 5 [(buf.validate.field).string.uuid = true];
}

message SetGroupMemberRoleResponse {}

message DeleteRelationRequest {
reserved 3;

Expand Down
Loading