mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 12:54:26 +01:00
fix the analytics
This commit is contained in:
parent
0548ab9038
commit
fc8c1d118d
@ -949,6 +949,7 @@ pub struct DocumentsDeletionAggregator {
|
|||||||
per_document_id: bool,
|
per_document_id: bool,
|
||||||
clear_all: bool,
|
clear_all: bool,
|
||||||
per_batch: bool,
|
per_batch: bool,
|
||||||
|
per_filter: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DocumentsDeletionAggregator {
|
impl DocumentsDeletionAggregator {
|
||||||
@ -962,6 +963,7 @@ impl DocumentsDeletionAggregator {
|
|||||||
DocumentDeletionKind::PerDocumentId => ret.per_document_id = true,
|
DocumentDeletionKind::PerDocumentId => ret.per_document_id = true,
|
||||||
DocumentDeletionKind::ClearAll => ret.clear_all = true,
|
DocumentDeletionKind::ClearAll => ret.clear_all = true,
|
||||||
DocumentDeletionKind::PerBatch => ret.per_batch = true,
|
DocumentDeletionKind::PerBatch => ret.per_batch = true,
|
||||||
|
DocumentDeletionKind::PerFilter => ret.per_batch = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
ret
|
ret
|
||||||
@ -981,6 +983,7 @@ impl DocumentsDeletionAggregator {
|
|||||||
self.per_document_id |= other.per_document_id;
|
self.per_document_id |= other.per_document_id;
|
||||||
self.clear_all |= other.clear_all;
|
self.clear_all |= other.clear_all;
|
||||||
self.per_batch |= other.per_batch;
|
self.per_batch |= other.per_batch;
|
||||||
|
self.per_filter |= other.per_filter;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn into_event(self, user: &User, event_name: &str) -> Option<Track> {
|
pub fn into_event(self, user: &User, event_name: &str) -> Option<Track> {
|
||||||
|
Loading…
Reference in New Issue
Block a user