mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Get number of members per conversation from API
This commit is contained in:
parent
9f3311978d
commit
a3f8e2f243
@ -580,10 +580,10 @@ ComunicWeb.components.conversations.chatWindows = {
|
||||
if(!ComunicWeb.components.calls.controller.isAvailable())
|
||||
return;
|
||||
|
||||
//Check if it is a conversation with two members
|
||||
if(conversation.infos.members.length != 2)
|
||||
return; //Currently the call feature is offered just
|
||||
//for conversation of two people
|
||||
//Check if it is a conversation with an exceptable number of members
|
||||
if(conversation.infos.members.length < 2
|
||||
|| conversation.infos.members.length > ComunicWeb.components.calls.controller.getConfig().maximum_number_members)
|
||||
return;
|
||||
|
||||
//Add the call button
|
||||
var button = createElem2({
|
||||
|
Loading…
Reference in New Issue
Block a user