Skip to content

Commit 9cab600

Browse files
committed
fix: fix to user_id
1 parent cd3071e commit 9cab600

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

protos/account.proto

+2-3
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,11 @@ message GetAllAccountsWithUsersAndBlockedDetailsResponse {
166166
message SyncAccountInfo {
167167
message UserInAccount {
168168
string user_id = 1;
169-
string user_name = 2;
170-
bool blocked = 3;
169+
bool blocked = 2;
171170
}
172171
string account_name = 1;
173172
repeated UserInAccount users = 2;
174-
optional string owner = 3;
173+
optional string owner_id = 3;
175174
bool blocked_in_cluster = 4;
176175
// if blocked_in_cluster is true, the value is []
177176
// if blocked_in_cluster is false, only unblock in specified paritions

0 commit comments

Comments
 (0)