Prepare for processing documents edition

This commit is contained in:
Clément Renault
2024-05-08 15:26:21 +02:00
parent 2099b4f0dd
commit 1702b5cf44
7 changed files with 107 additions and 4 deletions

View File

@ -177,6 +177,12 @@ fn snapshot_details(d: &Details) -> String {
} => {
format!("{{ received_documents: {received_documents}, indexed_documents: {indexed_documents:?} }}")
}
Details::DocumentEdition {
edited_documents,
edition_code,
} => {
format!("{{ edited_documents: {edited_documents:?}, edition_code: {edition_code:?} }}")
}
Details::SettingsUpdate { settings } => {
format!("{{ settings: {settings:?} }}")
}