1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-20 16:35:17 +00:00

Can delete group

This commit is contained in:
2021-01-20 19:20:28 +01:00
parent f031f7b4b3
commit e26d40183e
7 changed files with 76 additions and 6 deletions

View File

@ -215,4 +215,14 @@ impl PartialNotification {
self.dest_user_id = Some(id.clone());
self
}
pub fn set_on_elem_id(mut self, id: u64) -> PartialNotification {
self.on_elem_id = Some(id);
self
}
pub fn set_on_elem_type(mut self, t: NotifElemType) -> PartialNotification {
self.on_elem_type = Some(t);
self
}
}