Merge pull request #71 from jacotec/master

Pass invites to the receive object
This commit is contained in:
2022-12-05 21:20:11 -07:00
committed by GitHub
2 changed files with 13 additions and 0 deletions
+7
View File
@@ -260,6 +260,13 @@ module.exports = function(RED) {
});
} else {
node.log("Got invite to join room " + member.roomId);
let msg = {
type : 'r.invite',
payload : 'Invitation',
userId : member.userId,
topic : member.roomId
};
node.emit("Room.invite", msg);
}
}
});