mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-06-20 16:35:17 +00:00
Can delete group
This commit is contained in:
@ -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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user