Automatically update the list of members of the call

This commit is contained in:
2020-04-10 17:09:40 +02:00
parent 40c895870f
commit e46f8a36a7
3 changed files with 40 additions and 1 deletions

View File

@@ -221,6 +221,14 @@ class UserWebSocket {
SendEvent("commentDeleted", msg.data);
break;
case "user_joined_call":
SendEvent("userJoinedCall", msg.data);
break;
case "user_left_call":
SendEvent("userLeftCall", msg.data);
break;
default:
console.error("WS Unspported kind of message!", msg);
break;