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

Can get information about multiple groups

This commit is contained in:
2020-06-25 09:26:58 +02:00
parent aacf87cf40
commit 444cad6e09
3 changed files with 29 additions and 2 deletions

View File

@ -9,6 +9,6 @@ pub struct NewConversation {
pub owner_id: UserID,
pub name: Option<String>,
pub owner_following: bool,
pub members: Vec<i64>,
pub members: Vec<UserID>,
pub can_everyone_add_members: bool
}