Skip to content

Commit

Permalink
fix: s/membership_status/role (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta authored Sep 24, 2024
1 parent 5242b49 commit a548600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/global_admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ message _RemoveMemberResponse {
message _ListMembersRequest {
}

enum MembershipStatus {
enum Role {
OWNER = 0;
MEMBER = 1;
}

message _Member {
string user_name = 1;
MembershipStatus membership_status = 2;
Role role = 2;
}

message _ListMembersResponse {
Expand Down

0 comments on commit a548600

Please sign in to comment.