Skip to content
Snippets Groups Projects
Commit 0627c9f8 authored by Pavel Antonov's avatar Pavel Antonov :asterisk:
Browse files

Merge branch 'feature/2951-DeleteSearchScore' into 'master'

Удалены поля fields, exclude_fields, search_score в сервисе "Лог" после удаления полнотекстового поиска

See merge request !83
parents 28531974 399fe5aa
1 merge request!83Удалены поля fields, exclude_fields, search_score в сервисе "Лог" после удаления полнотекстового поиска
......@@ -100,6 +100,5 @@ message LogEntry {
// tags содержит теги связанные с событием, на усмотрение сервиса
repeated string tags = 11;
// релевантность элемента при полнотекстовом поиске
double search_score = 12;
reserved 12;
}
\ No newline at end of file
......@@ -51,11 +51,9 @@ message FindOptions {
// Сортировка результатов
repeated string sort = 1;
// Включить поля в результаты
repeated string fields = 2;
reserved 2;
// Исключить поля из результатов
bool exclude_fields = 3;
reserved 3;
// Ограничение количества результатов
int32 limit = 4;
......
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