participantJoined
This event is emitted when a new participant joins the meeting.
frame.on("participantJoined", function(participantInfo) {
});
Properties
The participantInfo
is an object that contains the following properties:
Property | Description | Type |
---|---|---|
_id | participantSessionId | string |
name | name of the user | string |
sharingAudio | is user currently sharing microphone | boolean |
sharingVideo | is user currently sharing camera | boolean |
sharingScreen | is user currently sharing screen | boolean |
disabledAudio | has admin disabled audio of the user | boolean |
disabledScreenSharing | has admin disabled screen sharing | boolean |
disabledVideo | had admin disabled camera | boolean |
isAdmin | is the user admin | boolean |
meetingSessionId | meetingSessionId | string |
roomId | roomId | string |