Add Wiki::delete_entry()

This commit is contained in:
Matthias Beyer 2018-04-14 15:49:03 +02:00
parent 2b8a83d9a7
commit 918d7a76b6
1 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,11 @@ impl<'a, 'b> Wiki<'a, 'b> {
Ok(WikiIdIterator(self.0.entries()?, filter))
}
pub fn delete_entry<EN: AsRef<str>>(&self, entry_name: EN) -> Result<()> {
let path = PathBuf::from(format!("{}/{}", self.1, entry_name.as_ref()));
let sid = ::module_path::ModuleEntryPath::new(path).into_storeid()?;
self.0.delete(sid).map_err(WE::from)
}
}
pub struct WikiIdIterator<'a>(StoreIdIteratorWithStore<'a>, IdIsInWikiFilter<'a>);