Skip to content

Commit

Permalink
feat: add SetAccountName api (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta authored Sep 18, 2024
1 parent 0334b76 commit 5242b49
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions proto/global_admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ service GlobalAdmin {
rpc RemoveMember(_RemoveMemberRequest) returns(_RemoveMemberResponse) {}
rpc ListMembers(_ListMembersRequest) returns(_ListMembersResponse) {}
rpc GetEndpointsForAccount(_GetEndpointsForAccountRequest) returns (_GetEndpointsForAccountResponse) {}
rpc SetAccountName(_SetAccountNameRequest) returns (_SetAccountNameResponse) {}
}

message _SetAccountNameRequest {
string account_name = 1;
}

message _SetAccountNameResponse {
}

// No parameters required - we derive identity from the auth header.
Expand Down

0 comments on commit 5242b49

Please sign in to comment.