mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-18 16:18:04 +00:00
Progress on create a conversation way
This commit is contained in:
22
classes/components/conversations.php
Normal file
22
classes/components/conversations.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* Conversations component
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
class conversations {
|
||||
|
||||
/**
|
||||
* Create a new conversation
|
||||
*
|
||||
* @param Integer $userID The ID of the user creating the conversation
|
||||
* @param Boolean $follow Defines if the user creating the conversation will follow it
|
||||
* @param Array $usersList The list of users following the conversation
|
||||
* @param Mixed $name Optionnal, the name of the conversation
|
||||
*/
|
||||
|
||||
}
|
||||
|
||||
//Register component
|
||||
Components::register("conversations", new conversations());
|
Reference in New Issue
Block a user