Browse Source

A few getters

github_actions
daladim 5 years ago
parent
commit
9e625cb94d
  1. 9
      src/data/calendar.rs

9
src/data/calendar.rs

@ -66,6 +66,15 @@ impl Calendar {
&self.name &self.name
} }
pub fn url(&self) -> &Url {
&self.url
}
/// Returns whether this calDAV calendar supports to-do items
pub fn supports_todo(&self) -> bool {
self.supported_components.contains(SupportedComponents::Todo)
}
pub fn tasks(&self) -> Vec<&Task> { pub fn tasks(&self) -> Vec<&Task> {
self.tasks self.tasks
.iter() .iter()

Loading…
Cancel
Save