mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 20:07:09 +02:00
rename received_document_ids to matched_documents in the DocumentDeletion task type (reimplementation of #2826)
This commit is contained in:
parent
7ed3f00b1e
commit
0aca5e84b9
6 changed files with 22 additions and 41 deletions
|
@ -122,7 +122,10 @@ impl From<Details> for DetailsView {
|
|||
Details::IndexInfo { primary_key } => {
|
||||
DetailsView { primary_key: Some(primary_key), ..DetailsView::default() }
|
||||
}
|
||||
Details::DocumentDeletion { received_document_ids, deleted_documents } => DetailsView {
|
||||
Details::DocumentDeletion {
|
||||
matched_documents: received_document_ids,
|
||||
deleted_documents,
|
||||
} => DetailsView {
|
||||
received_document_ids: Some(received_document_ids),
|
||||
deleted_documents: Some(deleted_documents),
|
||||
..DetailsView::default()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue