Exposing some Moderator methods through xmpp.js to we can do auth the

jitsi way from our client
This commit is contained in:
Robert Smallwood 2015-12-14 20:40:17 -07:00 committed by Mike Girard
parent 383afbc66d
commit e8763786e4
1 changed files with 6 additions and 0 deletions

View File

@ -629,6 +629,12 @@ var XMPP = {
},
filter_special_chars: function (text) {
return SDPUtil.filter_special_chars(text);
},
createConferenceIQ: function (roomName) {
Moderator.createConferenceIq(roomName);
},
parseSessionId: function (resultIq) {
Moderator.parseSessionId(resultIq);
}
};