calendar store: Add method for bulk insert

This commit is contained in:
Lennart K
2025-12-20 11:48:05 +01:00
parent b50ea478db
commit 28c925301e
4 changed files with 40 additions and 26 deletions

View File

@@ -394,11 +394,11 @@ impl CalendarStore for SqliteAddressbookStore {
}
#[instrument]
async fn put_object(
async fn put_objects(
&self,
_principal: String,
_cal_id: String,
_object: CalendarObject,
_objects: Vec<CalendarObject>,
_overwrite: bool,
) -> Result<(), Error> {
Err(Error::ReadOnly)