Merge remote-tracking branch 'origin/livekit' into dbkr/ppe2ee

This commit is contained in:
David Baker
2023-10-27 20:48:51 +01:00
5 changed files with 41 additions and 18 deletions

View File

@@ -62,6 +62,10 @@ interface UrlParams {
* Whether to hide the room header when in a call.
*/
hideHeader: boolean;
/**
* Whether the controls should be shown. For screen recording no controls can be desired.
*/
showControls: boolean;
/**
* Whether to hide the screen-sharing button.
*/
@@ -205,6 +209,7 @@ export const getUrlParams = (
appPrompt: parser.getFlagParam("appPrompt", true),
preload: parser.getFlagParam("preload"),
hideHeader: parser.getFlagParam("hideHeader"),
showControls: parser.getFlagParam("showControls"),
hideScreensharing: parser.getFlagParam("hideScreensharing"),
e2eEnabled: parser.getFlagParam("enableE2e", true),
userId: parser.getParam("userId"),