mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Ready to implement call system
This commit is contained in:
18
assets/js/components/calls/controller.js
Normal file
18
assets/js/components/calls/controller.js
Normal 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);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user