Moderation
Module which contains logic to handle moderation based features.
Flow for joining a room with the waiting-room enabled:
Joining the room
JoinSuccess
When joining a room, the join_success
control event contains the module-specific fields described below.
Fields
Field | Type | Always | Description |
---|---|---|---|
raise_hands_enabled | bool | yes | If raise hands feature is enabled |
waiting_room_enabled | bool | no | If waiting room is enabled |
waiting_room_participants | Participant[] | no | A list of participants in the waiting room; see Participant |
Example
For a moderator, the message would look like:
{
"waiting_room_enabled": true,
"waiting_room_participants": [
{
"id": "00000000-0000-0000-0000-000000000000",
"control": {
...
},
...
},
{
"id": "00000000-0000-0000-0000-000000000001",
"control": {
...
},
...
},
...
],
"raise_hands_enabled": true
}
For a non-moderator participant, the message would look like:
{
"raise_hands_enabled": true
}
Joined
When joining a room, the joined
control event sent to all other participants does not contain module-specific data.
Commands
Kick
Requires moderator role.
Remove a participant from the room.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "kick" |
target | string | yes | Id of the participant to kick |
Example
{
"action": "kick",
"target": "00000000-0000-0000-0000-000000000000"
}
Ban
Requires moderator role.
Ban a user from the room. Can only be used on participants where participation_kind
is "user". The user's user-id will
be banned from the room for the remainder of the session.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "ban" |
target | string | yes | Id of the participant to ban |
Example
{
"action": "ban",
"target": "00000000-0000-0000-0000-000000000000"
}
SendToWaitingRoom
Requires moderator role.
Behaves like a Kick
command and removes a participant from the room, but also implies that the frontend client should
attempt to re-join the room to end up in the waiting room.
The frontend client should enable the waiting room with the EnableWaitingRoom command before sending this command.
Returns an Error with variant cannot_send_room_owner_to_waiting_room
when the target is the room owner.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "send_to_waiting_room" |
target | string | yes | Id of the participant to send to the waiting room |
Example
{
"action": "send_to_waiting_room",
"target": "00000000-0000-0000-0000-000000000000"
}
Debrief
Starts a debriefing.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "debrief" |
kick_scope | enum | yes | Either "guests" , "users_and_guests" or "all" |
Example
{
"action": "debrief",
"kick_scope": "guest"
}
ChangeDisplayName
Requires moderator role.
Change the display name of a guest or phone user for the duration of the meeting.
This will trigger a Control/Update message for the targeted participant and a DisplayNameChanged is sent to all participants.
Can return Error of kind cannot_change_name_of_registered_users
when the targeted participant is not a guest
or dial-in user or kind invalid_display_name
when the new_name
is empty or longer than 100 characters.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "change_display_name" |
new_name | string | yes | The new display name |
target | string | yes | The id of the participant that gets their display name changed |
Example
{
"action": "change_display_name",
"new_name": "Foo Bar",
"target": "00000000-0000-0000-0000-000000000000"
}
EnableWaitingRoom
Requires moderator role.
Enable the waiting room.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "enable_waiting_room" |
Example
{
"action": "enable_waiting_room"
}