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

This commit is contained in:
David Baker
2023-10-26 10:29:12 +01:00
15 changed files with 665 additions and 395 deletions

View File

@@ -115,6 +115,12 @@ interface UrlParams {
* Whether we the app should use per participant keys for E2EE.
*/
perParticipantE2EE: boolean;
/**
* Setting this flag skips the lobby and brings you in the call directly.
* In the widget this can be combined with preload to pass the device settings
* with the join widget action.
*/
skipLobby: boolean;
}
// This is here as a stopgap, but what would be far nicer is a function that
@@ -211,6 +217,7 @@ export const getUrlParams = (
analyticsID: parser.getParam("analyticsID"),
allowIceFallback: parser.getFlagParam("allowIceFallback"),
perParticipantE2EE: parser.getFlagParam("perParticipantE2EE"),
skipLobby: parser.getFlagParam("skipLobby"),
};
};