JMAP for Calendars implementation (part 4)

This commit is contained in:
mdecimus
2025-10-09 19:02:33 +02:00
parent ec4963f46b
commit b84e3e85dd
56 changed files with 2008 additions and 355 deletions

View File

@@ -469,7 +469,7 @@ pub async fn test_filter(db: Store, fts: FtsStore) {
db.get_value::<String>(ValueKey {
account_id: 0,
collection: COLLECTION_ID.into(),
document_id: document_id as u32,
document_id: document_id.document_id(),
class: ValueClass::Property(fields_u8["accession_number"]),
})
.await
@@ -559,7 +559,7 @@ pub async fn test_sort(db: Store) {
db.get_value::<String>(ValueKey {
account_id: 0,
collection: COLLECTION_ID.into(),
document_id: document_id as u32,
document_id: document_id.document_id(),
class: ValueClass::Property(fields["accession_number"]),
})
.await