Meeting Metadata
Change the name of the user
Allow the user to edit their name by calling setName
method.
await meeting.self.setName('New Name');
Get info about the participants in the meeting
Before joining the meeting, you can get a list of people currently in the meeting by using the method
/**
* Returns all peers currently in the room, is a non paginated call
* and should only be used if you are in a non room joined state,
* if in a joined group call, use `meeting.participants.joined`
*/
meeting.participants.getParticipantsInMeetingPreJoin();