|
@@ -38,35 +38,27 @@
|
38
|
38
|
</div>
|
39
|
39
|
<script src="https://${jitsi_meet_room.domain}/libs/external_api.min.js"></script>
|
40
|
40
|
<script>
|
41
|
|
- //This example use jitsi-external API. Using lib-jitsi-meet is also a possibility.
|
42
|
|
- // It support alls jitsi-meet features.
|
43
|
|
- // About support for "private (1-to-1) text message into room", check this :
|
44
|
|
- // https://github.com/jitsi/lib-jitsi-meet/pull/616
|
45
|
41
|
let domain = '${jitsi_meet_room.domain}';
|
46
|
42
|
let options = {
|
47
|
|
- // jitsi-meet support now(10-2017) only one way to auto-auth, token,
|
48
|
|
- // which is anonymous BOSH auth with specific url (with token value in params of the url).
|
|
43
|
+ // INFO - G.M - 14-02-2018 jitsi-meet external API
|
|
44
|
+ // support only one way to auto-auth due to security concern : token,
|
|
45
|
+ // which is anonymous BOSH auth with specific url
|
|
46
|
+ // for another way to deal with auto-auth :
|
|
47
|
+ // see this rejected PR : https://github.com/jitsi/jitsi-meet/pull/2109
|
49
|
48
|
%if jitsi_meet_room.use_token:
|
50
|
49
|
jwt: '${jitsi_meet_room.generate_token()}',
|
51
|
50
|
%endif
|
52
|
51
|
roomName : '${jitsi_meet_room.room}',
|
53
|
52
|
parentNode: document.querySelector('#jitsi'),
|
54
|
|
- // has external API use iframe, height is a problem
|
|
53
|
+ // TODO - G.M - 14-02-2018 - Find a solution to height trouble.
|
|
54
|
+ // height should be related to page size
|
55
|
55
|
height: 700,
|
56
|
56
|
no_SSL: true,
|
57
|
57
|
configOverwrite: {
|
58
|
58
|
enableWelcomePage: false,
|
59
|
59
|
enableUserRolesBasedOnToken: true,
|
60
|
|
- // Example of how it can be possible to use others auths.
|
61
|
|
- // This solution has some security issue.
|
62
|
|
- // see this rejected PR : https://github.com/jitsi/jitsi-meet/pull/2109
|
63
|
|
- // roomPassword: "plop",
|
64
|
|
- // userJid: "john@auth.prosody",
|
65
|
|
- // userPassword: "j",
|
66
|
|
-
|
67
|
60
|
},
|
68
|
61
|
interfaceConfigOverwrite: {
|
69
|
|
- // DEFAULT_BACKGROUND: '#FFFFFF',
|
70
|
62
|
SHOW_JITSI_WATERMARK: false,
|
71
|
63
|
SHOW_POWERED_BY: false,
|
72
|
64
|
SHOW_WATERMARK_FOR_GUESTS: false,
|