waitingUsersLeft
Last updated
Emitted when users waiting in the lobby left and are no longer in the room.
{
"type": "waitingUsersLeft",
"data": {
"userIds": [
"2775f882-845e-4416-82c9-04cc25669c0b",
"64221470-c360-47ad-961e-ecbda8eeaf7f"
]
}
}sambaFrame.on('waitingUsersLeft', (event) => {
const data = event.data;
console.log(data.userIds, 'left the lobby');
});Last updated