Update lock icon when moderator changes state

This commit is contained in:
Sam Whited 2016-08-30 13:11:01 -05:00
parent 9ba62c320b
commit 3e269978d9
1 changed files with 5 additions and 0 deletions

View File

@ -1175,6 +1175,11 @@ export default {
APP.UI.updateRecordingState(status); 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) { room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
APP.UI.updateUserStatus(id, status); APP.UI.updateUserStatus(id, status);
}); });