Skip to content
Snippets Groups Projects
Commit e2ce2751 authored by ko_oler's avatar ko_oler
Browse files

Merge branch 'master' into feature/2785-middleware

parents 229fbdb2 806e7b2b
No related branches found
No related tags found
1 merge request!65Draft: Добавлена спецификация на события в системе
......@@ -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