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

background -> logo

This commit is contained in:
2021-03-05 14:20:50 +01:00
parent 17e50ed59b
commit fd6970f6fe
7 changed files with 12 additions and 12 deletions

View File

@ -61,7 +61,7 @@ pub fn create(r: &mut HttpRequestHandler) -> RequestResult {
can_everyone_add_members: r.post_bool_opt("canEveryoneAddMembers", true),
color: r.post_color_opt("color")?,
group_id: None,
background: None,// TODO : add support for background
logo: None,// TODO : add support for logo
};
// Create the conversation
@ -191,7 +191,7 @@ pub fn find_private(r: &mut HttpRequestHandler) -> RequestResult {
members: vec![r.user_id()?, other_user],
can_everyone_add_members: true,
color: r.post_color_opt("color")?,
background: None,
logo: None,
group_id: None,
};
let conv_id = conversations_helper::create(&new_conv)?;