Skip to content
Snippets Groups Projects
Commit 8c25e50f authored by Danis Kirasirov's avatar Danis Kirasirov
Browse files

Новые параметры

parent 38bb5ab5
No related branches found
No related tags found
1 merge request!69Опции поиска Invitations заменены на общее решение
This commit is part of merge request !69. Comments created here will be created in the context of that merge request.
...@@ -30,8 +30,10 @@ message Filter { ...@@ -30,8 +30,10 @@ message Filter {
message FindOptions { message FindOptions {
repeated string sort = 1; repeated string sort = 1;
int32 page_num = 2; int32 page_num = 2; // Deprecated
int32 page_size = 3; int32 page_size = 3; // Deprecated
int32 offset = 4;
int32 limit = 5;
} }
message CreateRequest { message CreateRequest {
...@@ -69,7 +71,7 @@ message AcceptInvitationResponse {} ...@@ -69,7 +71,7 @@ message AcceptInvitationResponse {}
message FindRequest { message FindRequest {
Filter filter = 1; Filter filter = 1;
FindOptions opts = 2; FindOptions options = 2;
} }
message FindResponse { message FindResponse {
......
...@@ -49,7 +49,7 @@ message Filter { ...@@ -49,7 +49,7 @@ message Filter {
message FindRequest { message FindRequest {
Filter filter = 1; Filter filter = 1;
common.FindOptions opts = 2; common.FindOptions options = 2;
} }
message FindResponse { message FindResponse {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment