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

@@ -61,4 +61,6 @@ pub trait CalendarStore: Send + Sync + 'static {
cal_id: &str,
object_id: &str,
) -> Result<(), Error>;
fn is_read_only(&self) -> bool;
}