Support read-only calendar store as preparation for birthday calendars

This commit is contained in:
Lennart
2025-01-06 17:28:40 +01:00
parent 357b115c62
commit 6a7e839f35
6 changed files with 76 additions and 29 deletions

View File

@@ -140,4 +140,8 @@ impl<AS: AddressbookStore> CalendarStore for ContactBirthdayStore<AS> {
) -> Result<(), Error> {
Err(Error::ReadOnly)
}
fn is_read_only(&self) -> bool {
true
}
}