add defaults and add showControls

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2023-10-25 13:32:28 +02:00
parent 97eb9d0996
commit 6e44b084d7

View File

@@ -72,7 +72,7 @@ roomId: string | null;
Whether the app should keep the user confined to the current call/room. Whether the app should keep the user confined to the current call/room.
``` ```
confineToRoom: boolean; confineToRoom: boolean; (default: false)
``` ```
**appPrompt** **appPrompt**
@@ -80,7 +80,7 @@ Whether upon entering a room, the user should be prompted to launch the
native mobile app. (Affects only Android and iOS.) native mobile app. (Affects only Android and iOS.)
``` ```
appPrompt: boolean; appPrompt: boolean; (default: true)
``` ```
**preload** **preload**
@@ -88,28 +88,42 @@ Whether the app should pause before joining the call until it sees an
io.element.join widget action, allowing it to be preloaded. io.element.join widget action, allowing it to be preloaded.
``` ```
preload: boolean; preload: boolean; (default: false)
``` ```
**hideHeader** **hideHeader**
Whether to hide the room header when in a call. Whether to hide the room header when in a call.
``` ```
hideHeader: boolean; hideHeader: boolean; (default: false)
```
**showControls**
Whether to show the buttons to mute, screen-share, invite, hangup are shown when in a call.
```
showControls: boolean; (default: true)
``` ```
**hideScreensharing** **hideScreensharing**
Whether to hide the screen-sharing button. Whether to hide the screen-sharing button.
``` ```
hideScreensharing: boolean; hideScreensharing: boolean; (default: false)
``` ```
**e2eEnabled** **e2eEnabled**
Whether to use end-to-end encryption. Whether to use end-to-end encryption.
``` ```
e2eEnabled: boolean; e2eEnabled: boolean; (default: true)
```
**password**
E2EE password when using a shared secret. (For individual sender keys in embedded mode this is not required.)
```
password: string | null;
``` ```
**displayName** **displayName**
@@ -152,14 +166,7 @@ Whether the app is allowed to use fallback STUN servers for ICE in case the
user's homeserver doesn't provide any. user's homeserver doesn't provide any.
``` ```
allowIceFallback: boolean; allowIceFallback: boolean; (default: false)
```
**password**
E2EE password
```
password: string | null;
``` ```
**skipLobby** **skipLobby**
@@ -168,5 +175,5 @@ In the widget this can be combined with preload to pass the device settings
with the join widget action. with the join widget action.
``` ```
skipLobby: boolean; skipLobby: boolean; (default: false)
``` ```