Przeglądaj źródła

doc: add documentation to some url params

efficient_tiling
Bettenbuk Zoltan 5 lat temu
rodzic
commit
dff7d661ca
2 zmienionych plików z 11 dodań i 2 usunięć
  1. 8
    0
      config.js
  2. 3
    2
      doc/api.md

+ 8
- 0
config.js Wyświetl plik

451
     // the menu has option to flip the locally seen video for local presentations
451
     // the menu has option to flip the locally seen video for local presentations
452
     // disableLocalVideoFlip: false,
452
     // disableLocalVideoFlip: false,
453
 
453
 
454
+    // Mainly privacy related settings
455
+
456
+    // Disables all invite functions from the app (share, invite, dial out...etc)
457
+    // disableInviteFunctions: true,
458
+
459
+    // Disables storing the room name to the recents list
460
+    // doNotStoreRoom: true,
461
+
454
     // Deployment specific URLs.
462
     // Deployment specific URLs.
455
     // deploymentUrls: {
463
     // deploymentUrls: {
456
     //    // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
464
     //    // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for

+ 3
- 2
doc/api.md Wyświetl plik

85
 const api = new JitsiMeetExternalAPI(domain, options);
85
 const api = new JitsiMeetExternalAPI(domain, options);
86
  ```
86
  ```
87
 
87
 
88
-You can set the userInfo(email) for the call:
88
+You can set the userInfo(email, display name) for the call:
89
 
89
 
90
 ```javascript
90
 ```javascript
91
 var domain = "meet.jit.si";
91
 var domain = "meet.jit.si";
92
 var options = {
92
 var options = {
93
     ...
93
     ...
94
     userInfo: {
94
     userInfo: {
95
-        email: 'email@jitsiexamplemail.com'
95
+        email: 'email@jitsiexamplemail.com',
96
+        displayName: 'John Doe'
96
     }
97
     }
97
 }
98
 }
98
 var api = new JitsiMeetExternalAPI(domain, options);
99
 var api = new JitsiMeetExternalAPI(domain, options);

Ładowanie…
Anuluj
Zapisz