1
0
mirror of https://github.com/pierre42100/ComunicAPI synced 2025-03-30 18:12:40 +00:00

Upgraded method

This commit is contained in:
Pierre 2018-04-29 14:36:33 +02:00
parent 39a08d8813
commit e71372de60

@ -192,7 +192,13 @@ class ConversationsController{
$conversationMembers = array(userID, $otherUser);
//Try to create the conversation
$conversationID = CS::get()->components->conversations->create($ID_owner, $follow, $conversationMembers);
$conv = new ConversationInfo();
$conv->set_id_owner(userID);
$conv->set_name(false);
$conv->set_following(true);
$conv->add_member(userID);
$conv->add_member($otherUser);
$conversationID = CS::get()->components->conversations->create($conv);
//Check for errors
if($conversationID == 0)