Remove the ability to hide yourself in video rooms (#22806)

pull/22811/head
Robin 2022-07-11 10:13:23 -04:00 committed by GitHub
parent 017dfb6606
commit 7708d0584b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -413,6 +413,9 @@ function joinConference(audioDevice?: string | null, videoDevice?: string | null
];
// Hide all top bar elements
options.configOverwrite.conferenceInfo = { autoHide: [] };
// Remove the ability to hide your own tile, since we're hiding the
// settings button which would be the only way to get it back
options.configOverwrite.disableSelfViewSettings = true;
}
meetApi = new JitsiMeetExternalAPI(jitsiDomain, options);