CardDAV GET + PUT

This commit is contained in:
mdecimus
2025-03-29 19:46:05 +01:00
parent 372f2bec70
commit 76f085ab7c
36 changed files with 1203 additions and 501 deletions

View File

@@ -45,7 +45,7 @@ impl<T: IdBimapItem> IdBimap<T> {
}
pub fn iter(&self) -> impl Iterator<Item = &T> {
self.id_to_name.values().map(|v| v.as_ref())
self.name_to_id.values().map(|v| v.as_ref())
}
}