Add import_calendar method to CalendarStore

This commit is contained in:
Lennart
2025-08-23 12:23:05 +02:00
parent 9c114dc204
commit b7cfd3301b
4 changed files with 70 additions and 0 deletions

View File

@@ -83,6 +83,15 @@ impl<AS: AddressbookStore> CalendarStore for ContactBirthdayStore<AS> {
Err(Error::ReadOnly)
}
async fn import_calendar(
&self,
_calendar: Calendar,
_objects: Vec<CalendarObject>,
_merge_existing: bool,
) -> Result<(), Error> {
Err(Error::ReadOnly)
}
async fn sync_changes(
&self,
principal: &str,