Explorar el Código

Update lock icon when moderator changes state

j8
Sam Whited hace 9 años
padre
commit
3e269978d9
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      conference.js

+ 5
- 0
conference.js Ver fichero

@@ -1175,6 +1175,11 @@ export default {
1175 1175
             APP.UI.updateRecordingState(status);
1176 1176
         });
1177 1177
 
1178
+        room.on(ConferenceEvents.LOCK_STATE_CHANGED, (state, error) => {
1179
+            console.log("Received channel password lock change: ", state, error);
1180
+            APP.UI.markRoomLocked(state);
1181
+        });
1182
+
1178 1183
         room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
1179 1184
             APP.UI.updateUserStatus(id, status);
1180 1185
         });

Loading…
Cancelar
Guardar