Skip to content

Commit

Permalink
feat: 获取用户信息添加返回值tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Lansongxx committed Mar 22, 2024
1 parent 527ea3d commit 5e5ddc8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cloudmind/core_api/content.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ message UpdateUserResp{
message SearchUserReq{
optional string allFieldsKey = 1;
optional string name = 2;
optional string id = 3;
optional string description = 4;
optional int64 limit = 5;
optional string lastToken = 6;
optional bool backward = 7;
optional int64 offset = 8;
optional string description = 3;
optional int64 limit = 4;
optional string lastToken = 5;
optional bool backward = 6;
optional int64 offset = 7;
}

message SearchUserResp{
Expand Down Expand Up @@ -321,6 +320,7 @@ message GetUserResp{
string userId = 1;
string name = 2;
string url = 3;
repeated string tags = 4;
}

message CreateUserReq{
Expand Down

0 comments on commit 5e5ddc8

Please sign in to comment.