doc: add documentation to some url params

pull/5999/head jitsi-meet_4448
Bettenbuk Zoltan 5 years ago committed by Zoltan Bettenbuk
parent edb8ecd542
commit dff7d661ca
  1. 8
      config.js
  2. 5
      doc/api.md

@ -451,6 +451,14 @@ var config = {
// the menu has option to flip the locally seen video for local presentations // the menu has option to flip the locally seen video for local presentations
// disableLocalVideoFlip: false, // disableLocalVideoFlip: false,
// Mainly privacy related settings
// Disables all invite functions from the app (share, invite, dial out...etc)
// disableInviteFunctions: true,
// Disables storing the room name to the recents list
// doNotStoreRoom: true,
// Deployment specific URLs. // Deployment specific URLs.
// deploymentUrls: { // deploymentUrls: {
// // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for

@ -85,14 +85,15 @@ const options = {
const api = new JitsiMeetExternalAPI(domain, options); const api = new JitsiMeetExternalAPI(domain, options);
``` ```
You can set the userInfo(email) for the call: You can set the userInfo(email, display name) for the call:
```javascript ```javascript
var domain = "meet.jit.si"; var domain = "meet.jit.si";
var options = { var options = {
... ...
userInfo: { userInfo: {
email: 'email@jitsiexamplemail.com' email: 'email@jitsiexamplemail.com',
displayName: 'John Doe'
} }
} }
var api = new JitsiMeetExternalAPI(domain, options); var api = new JitsiMeetExternalAPI(domain, options);

Loading…
Cancel
Save