Merge pull request #821 from SamWhited/hql1748_update_lock_icon_on_config_change

Update lock icon when moderator changes state
This commit is contained in:
Дамян Минков
2016-08-31 15:53:17 -05:00
committed by GitHub
+5
View File
@@ -1161,6 +1161,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);
});