ComunicWeb/assets/js/components/calls/controller.js

18 lines
282 B
JavaScript
Raw Normal View History

2020-04-10 09:24:46 +00:00
/**
* 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);
}
}