handle AUTH_STATUS_CHANGED event

This commit is contained in:
isymchych 2016-02-25 14:32:52 +02:00
parent e478a73988
commit b73bddf1c4
1 changed files with 7 additions and 1 deletions

View File

@ -624,10 +624,16 @@ export default {
_setupListeners () {
// add local streams when joined to the conference
room.on(ConferenceEvents.CONFERENCE_JOINED, () => {
APP.UI.updateAuthInfo(room.isAuthEnabled(), room.getAuthLogin());
APP.UI.mucJoined();
});
room.on(
ConferenceEvents.AUTH_STATUS_CHANGED,
function (authEnabled, authLogin) {
APP.UI.updateAuthInfo(authEnabled, authLogin);
}
);
room.on(ConferenceEvents.USER_JOINED, (id, user) => {
console.log('USER %s connnected', id, user);