Skip to content

Commit

Permalink
doc: add documentation to some url params
Browse files Browse the repository at this point in the history
  • Loading branch information
zbettenbuk committed Apr 14, 2020
1 parent edb8ecd commit dff7d66
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,14 @@ var config = {
// the menu has option to flip the locally seen video for local presentations
// 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.
// deploymentUrls: {
// // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
Expand Down
5 changes: 3 additions & 2 deletions doc/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,15 @@ const 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
var domain = "meet.jit.si";
var options = {
...
userInfo: {
email: 'email@jitsiexamplemail.com'
email: 'email@jitsiexamplemail.com',
displayName: 'John Doe'
}
}
var api = new JitsiMeetExternalAPI(domain, options);
Expand Down

0 comments on commit dff7d66

Please sign in to comment.