Implemented pulling new calendars from server

This commit is contained in:
daladim 2021-03-31 08:32:28 +02:00
parent 0b65dff46d
commit 401099ed33
6 changed files with 55 additions and 34 deletions

View file

@ -230,5 +230,9 @@ impl CalDavSource<RemoteCalendar> for Client {
.and_then(|cals| cals.get(id))
.map(|cal| cal.clone())
}
async fn insert_calendar(&mut self, new_calendar: RemoteCalendar) -> Result<(), Box<dyn Error>> {
Err("Not implemented".into())
}
}