mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 00:02:20 +00:00
store: Add get_deleted_(addressbooks/calendars)
This commit is contained in:
@@ -6,6 +6,7 @@ use async_trait::async_trait;
|
||||
pub trait CalendarStore: Send + Sync + 'static {
|
||||
async fn get_calendar(&self, principal: &str, id: &str) -> Result<Calendar, Error>;
|
||||
async fn get_calendars(&self, principal: &str) -> Result<Vec<Calendar>, Error>;
|
||||
async fn get_deleted_calendars(&self, principal: &str) -> Result<Vec<Calendar>, Error>;
|
||||
|
||||
async fn update_calendar(
|
||||
&self,
|
||||
|
||||
Reference in New Issue
Block a user