|
|
@@ -624,10 +624,16 @@ export default {
|
|
624
|
624
|
_setupListeners () {
|
|
625
|
625
|
// add local streams when joined to the conference
|
|
626
|
626
|
room.on(ConferenceEvents.CONFERENCE_JOINED, () => {
|
|
627
|
|
- APP.UI.updateAuthInfo(room.isAuthEnabled(), room.getAuthLogin());
|
|
628
|
627
|
APP.UI.mucJoined();
|
|
629
|
628
|
});
|
|
630
|
629
|
|
|
|
630
|
+ room.on(
|
|
|
631
|
+ ConferenceEvents.AUTH_STATUS_CHANGED,
|
|
|
632
|
+ function (authEnabled, authLogin) {
|
|
|
633
|
+ APP.UI.updateAuthInfo(authEnabled, authLogin);
|
|
|
634
|
+ }
|
|
|
635
|
+ );
|
|
|
636
|
+
|
|
631
|
637
|
|
|
632
|
638
|
room.on(ConferenceEvents.USER_JOINED, (id, user) => {
|
|
633
|
639
|
console.log('USER %s connnected', id, user);
|