You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/capabilities.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,8 @@
163
163
*`chat-summary-api` (local) - Whether the endpoint to get summarized chat messages in a conversation is available
164
164
*`email-csv-import` - Whether the endpoint to import a CSV email list as participants exists
165
165
*`config => chat => summary-threshold` (local) - Number of unread messages that should exist to show a "Generate summary" option
166
-
*`config => call => start-without-media` (local) - Boolean, whether media should be disabled when starting or joining a conversation
166
+
*`config => call => start-without-audio` (local) - Boolean, whether audio should be disabled when starting or joining a conversation
167
+
*`config => call => start-without-video` (local) - Boolean, whether video should be disabled when starting or joining a conversation
167
168
*`config => call => max-duration` - Integer, maximum call duration in seconds. Please note that this should only be used with system cron and with a reasonable high value, due to the expended duration until the background job ran.
168
169
*`config => call => blur-virtual-background` (local) - Boolean, whether blur background is set by default when joining a conversation
Copy file name to clipboardExpand all lines: docs/settings.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
22
22
## User settings
23
23
24
-
**Note:** Settings from `calls_start_without_media` onwards can not be set via above API.
24
+
**Note:** Settings from `calls_start_without_audio` onwards can not be set via above API.
25
25
Instead, the server API `POST /ocs/v2.php/apps/provisioning_api/api/v1/config/users/{appId}/{configKey}` needs to be used.
26
26
27
27
| Key | Capability | Default | Valid values |
@@ -30,7 +30,8 @@ Instead, the server API `POST /ocs/v2.php/apps/provisioning_api/api/v1/config/us
30
30
|`read_status_privacy`|`config => chat => read-privacy`|`0`| One of the read-status constants from the [constants list](constants.md#participant-read-status-privacy)|
31
31
|`typing_privacy`|`config => chat => typing-privacy`|`0`| One of the typing privacy constants from the [constants list](constants.md#participant-typing-privacy)|
32
32
|`play_sounds`||`'yes'`|`'yes'` and `'no'`|
33
-
|`calls_start_without_media`|`config => call => start-without-media`|`''` falling back to app config with the same name |`'yes'` and `'no'`|
33
+
|`calls_start_without_audio`|`config => call => start-without-audio`|`''` falling back to app config with the same name |`'yes'` and `'no'`|
34
+
|`calls_start_without_video`|`config => call => start-without-video`|`''` falling back to app config with the same name |`'yes'` and `'no'`|
34
35
|`blur_virtual_background`|`config => call => blur-virtual-background`|`'no'`|`'yes'` and `'no'`|
35
36
|`conversations_list_style`|`config => conversations => list-style`|`''` falling back to app config with the same name | One of the constants from the [constants list](constants.md#conversation-list-style)|
36
37
|`chat_style`|`config => chat => chat-style`|`''` falling back to app config with the same name | One of the constants from the [constants list](constants.md#chat-style)|
@@ -117,7 +118,8 @@ Legend:
117
118
|`hide_signaling_warning`| string<br>`yes` or `no`|`no`| No | 🖌️ | Flag that allows to suppress the warning that an HPB should be configured |
118
119
|`conversations_list_style`| string<br>`two-lines` or `compact`|`two-lines`| No || Default conversation list style when not overwritten by the user |
119
120
|`chat_style`| string<br>`split` or `unified`|`split`| No || Default chat style when not overwritten by the user |
120
-
|`calls_start_without_media`| bool |`false`| No || Whether participants start with enabled or disabled audio and video by default |
121
+
|`calls_start_without_audio`| bool |`false`| No || Whether participants start with audio disabled by default |
122
+
|`calls_start_without_video`| bool |`false`| No || Whether participants start with video disabled by default |
121
123
|`breakout_rooms`| bool |`true`| Yes || Whether or not breakout rooms are allowed (Will only prevent creating new breakout rooms. Existing conversations are not modified.) |
122
124
|`call_recording`| string<br>`yes` or `no`|`yes`| Yes || Enable call recording |
123
125
|`call_recording_summary`| string<br>`yes` or `no`|`yes`| No | 🖌️ | Whether call recordings should automatically be summarized when a transcription and summary provider is enabled. |
Copy file name to clipboardExpand all lines: lib/ConfigLexicon.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,8 @@ public function getAppConfigs(): array {
49
49
newEntry(Config::EXTERNAL_CALL_SERVICE_AUTH_PASSWORD, ValueType::STRING, '', definition: 'HTTP Basic Auth password used when Talk calls the external service'),
50
50
newEntry(Config::EXTERNAL_CALL_SERVICE_FRAME_ORIGINS, ValueType::ARRAY, [], definition: 'JSON array of scheme+host(+port) origins that may be loaded in the iframe.' . PHP_EOL . 'Added to `Content-Security-Policy: frame-src` and the `Permissions-Policy` for camera/microphone'),
51
51
newEntry(Config::EXTERNAL_CALL_SERVICE_IFRAME_FIELD, ValueType::STRING, '', definition: 'JSON field name in the external service response that contains the iframe URL'),
52
-
newEntry(Config::CALLS_START_WITHOUT_MEDIA, ValueType::BOOL, false, definition: 'Whether participants start with enabled or disabled audio and video by default'),
52
+
newEntry(Config::CALLS_START_WITHOUT_AUDIO, ValueType::BOOL, false, definition: 'Whether participants start with audio disabled by default'),
53
+
newEntry(Config::CALLS_START_WITHOUT_VIDEO, ValueType::BOOL, false, definition: 'Whether participants start with video disabled by default'),
53
54
newEntry(Config::INACTIVITY_LOCK_AFTER_DAYS, ValueType::INT, 0, definition: 'A duration (in days) after which rooms are locked. Calculated from the last activity in the room,'),
54
55
newEntry(Config::INACTIVITY_ENABLE_LOBBY, ValueType::BOOL, false, definition: 'Additionally enable the lobby for inactive rooms so they can only be read by moderators.'),
55
56
newEntry(Config::EXPERIMENTS_USERS, ValueType::INT, 0, definition: 'Bit flag of experiments that should be enabled for logged-in users on this server' . PHP_EOL . 'See https://github.com/nextcloud/spreed/blob/main/docs/settings.md#experiments'),
0 commit comments