From dff7d661ca26656399cfa9a50a1af939c58d5671 Mon Sep 17 00:00:00 2001 From: Bettenbuk Zoltan Date: Thu, 9 Apr 2020 17:33:14 +0200 Subject: [PATCH] doc: add documentation to some url params --- config.js | 8 ++++++++ doc/api.md | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/config.js b/config.js index 16ff579c9a4d..a883684613f6 100644 --- a/config.js +++ b/config.js @@ -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 diff --git a/doc/api.md b/doc/api.md index 0da7c9a76b96..9281c3a6e3f5 100644 --- a/doc/api.md +++ b/doc/api.md @@ -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);