mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-10-11 13:54:42 +00:00
Fix issues
This commit is contained in:
@@ -2,8 +2,10 @@
|
||||
//!
|
||||
//! @author Pierre Huber
|
||||
|
||||
use crate::data::user::UserID;
|
||||
use std::collections::HashSet;
|
||||
|
||||
use crate::data::group_id::GroupID;
|
||||
use crate::data::user::UserID;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct NewConversation {
|
||||
@@ -13,6 +15,6 @@ pub struct NewConversation {
|
||||
pub color: Option<String>,
|
||||
pub logo: Option<String>,
|
||||
pub owner_following: bool,
|
||||
pub members: Vec<UserID>,
|
||||
pub can_everyone_add_members: bool
|
||||
pub members: HashSet<UserID>,
|
||||
pub can_everyone_add_members: bool,
|
||||
}
|
Reference in New Issue
Block a user