Update lock icon when moderator changes state
This commit is contained in:
parent
9ba62c320b
commit
3e269978d9
|
@ -1175,6 +1175,11 @@ export default {
|
|||
APP.UI.updateRecordingState(status);
|
||||
});
|
||||
|
||||
room.on(ConferenceEvents.LOCK_STATE_CHANGED, (state, error) => {
|
||||
console.log("Received channel password lock change: ", state, error);
|
||||
APP.UI.markRoomLocked(state);
|
||||
});
|
||||
|
||||
room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
|
||||
APP.UI.updateUserStatus(id, status);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue