Ready to implement call system

This commit is contained in:
2020-04-10 11:24:46 +02:00
parent c8d0fc3186
commit a59b9b6441
3 changed files with 22 additions and 4 deletions

View File

@ -0,0 +1,18 @@
/**
* Calls controller
*
* @author Pierre Hubert
*/
class CallsController {
/**
* Open a call for a conversation
*
* @param {Conversation} conv Information about the target conversation
*/
static Open(conv) {
alert("Open call for conversation " + conv.ID);
}
}