Handle conversation deleted event

This commit is contained in:
2021-03-13 13:39:03 +01:00
parent 0a5a2637f5
commit 54d8245f91
3 changed files with 21 additions and 1 deletions

View File

@ -217,6 +217,10 @@ class UserWebSocket {
SendEvent("removedUserFromConv", msg.data);
break;
case "deleted_conversation":
SendEvent("deletedConversation", msg.data);
break;
case "new_comment":
SendEvent("new_comment", msg.data);
break;