Skip to content
Snippets Groups Projects
Commit e8812d18 authored by Danis Kirasirov's avatar Danis Kirasirov :8ball: Committed by Pavel Antonov
Browse files

feat: Опции поиска Invitations заменены на общее решение

Issue https://git.perx.ru/perxis/perxis/-/issues/2830
parent 38bb5ab5
No related branches found
No related tags found
1 merge request!69Опции поиска Invitations заменены на общее решение
......@@ -3,6 +3,7 @@ syntax = "proto3";
import "google/protobuf/timestamp.proto";
import "google/protobuf/empty.proto";
import "google/protobuf/wrappers.proto";
import "common/common.proto";
option go_package = "git.perx.ru/perxis/perxis-go/proto/invitations;invitations";
......@@ -28,12 +29,6 @@ message Filter {
repeated string role = 6;
}
message FindOptions {
repeated string sort = 1;
int32 page_num = 2;
int32 page_size = 3;
}
message CreateRequest {
Invitation invitation = 1;
}
......@@ -69,7 +64,7 @@ message AcceptInvitationResponse {}
message FindRequest {
Filter filter = 1;
FindOptions opts = 2;
common.FindOptions options = 3;
}
message FindResponse {
......
......@@ -49,7 +49,7 @@ message Filter {
message FindRequest {
Filter filter = 1;
common.FindOptions opts = 2;
common.FindOptions options = 2;
}
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