Admit or deny somebody waiting to join.
Reads waitingRoomList off the bag, so you only supply the person's name or id and whether to let them in.
waitingRoomList
for (const person of parameters.waitingRoomList ?? []) { await respondToWaitingParticipant({ parameters, id: person.id, admit: true });} Copy
for (const person of parameters.waitingRoomList ?? []) { await respondToWaitingParticipant({ parameters, id: person.id, admit: true });}
Admit or deny somebody waiting to join.
Reads
waitingRoomListoff the bag, so you only supply the person's name or id and whether to let them in.