Refactoring controllers to use publicly accessible CursorLists

This commit is contained in:
Brandon Watson
2021-04-12 21:54:21 -04:00
parent 4acf091511
commit 46173f4f99
6 changed files with 47 additions and 49 deletions

View File

@ -105,13 +105,14 @@ message LeavePartyResponse {
message Member {
//Resource name of the party member to be returned (Added by server)
string name = 1;
string userName = 2;
string id = 2;
string userName = 3;
//Added by server
string ipAddress = 3;
string ipAddress = 4;
//Added by server
google.protobuf.Timestamp addedOn = 4;
google.protobuf.Timestamp addedOn = 5;
}
message ListMembersRequest {