feat: search users by list of emails (users/_search) (#6983)

Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
This commit is contained in:
Miguel Cabrerizo
2024-01-08 18:45:54 +01:00
committed by GitHub
parent e769b163ef
commit 17153b694e
3 changed files with 20 additions and 0 deletions

View File

@@ -188,6 +188,7 @@ message SearchQuery {
OrQuery or_query = 11;
AndQuery and_query = 12;
NotQuery not_query = 13;
InUserEmailsQuery in_user_emails_query = 14;
}
}
@@ -223,6 +224,15 @@ message InUserIDQuery {
];
}
message InUserEmailsQuery {
repeated string user_emails = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "the emails of the users to include"
example: "[\"test@example.com\",\"test@example.org\"]";
}
];
}
message UserNameQuery {
string user_name = 1 [
(validate.rules).string = {max_len: 200},