Merge pull request #19919 from antobinary/docs-layout

docs: info on allowOverrideClientSettingsOnCreateCall
This commit is contained in:
Anton Georgiev 2024-05-09 22:15:52 -04:00 committed by GitHub
commit 3c2a3f7e25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 17 additions and 4 deletions

View File

@ -68,7 +68,6 @@ object Dependencies {
val postgresql = "org.postgresql" % "postgresql" % Versions.postgresql
val jacksonDataFormat = "com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % Versions.jacksonDataFormat
val snakeYaml = "org.yaml" % "snakeyaml"
}
object Test {

View File

@ -357,8 +357,8 @@ allowFetchAllRecordings=true
# The directory where the pre-built configs are stored
configDir=/var/bigbluebutton/configs
# Disable this option to avoid overriding client settings through /create call
allowOverrideClientSettingsOnCreateCall=true
# Enable this option to allow overriding client settings through /create call
allowOverrideClientSettingsOnCreateCall=false
# The directory to export Json with Meeting activities (used in Learning Dashboard)
learningDashboardFilesDir=/var/bigbluebutton/learning-dashboard

View File

@ -402,6 +402,13 @@ const createEndpointTableData = [
"required": false,
"type": "String",
"description": (<>If passed it will use this string as the name of the presentation uploaded via <code className="language-plaintext highlighter-rouge">preUploadedPresentation</code> (added 2.7.2)</>)
},
{
"name": "allowOverrideClientSettingsOnCreateCall",
"required": false,
"default": "false",
"type": "String",
"description": (<> (added in BBB 3.0.0-alpha.1)</>)
}
]

View File

@ -109,7 +109,7 @@ Updated in 2.7:
Updated in 3.0:
- **create** - **Added:** `loginURL`.
- **create** - **Added:** `allowOverrideClientSettingsOnCreateCall`, `loginURL`.
- **join** - **Added:** `userdata-bbb_default_layout`. **Removed:** `defaultLayout` (replaced by `userdata-bbb_default_layout`).
## API Data Types

View File

@ -91,6 +91,13 @@ In BigBlueButton 3.0.0-alpha.5 we replaced the JOIN parameter `defaultLayout` wi
In BigBlueButton 2.7.5/3.0.0-alpha.5 we stopped propagating the events.xml event TranscriptUpdatedRecordEvent due to some issues with providing too much and too repetitive data.
#### bbb-web properties changes
`allowOverrideClientSettingsOnCreateCall=false` added
`sessionsCleanupDelayInMinutes=60` added
`graphqlWebsocketUrl=${bigbluebutton.web.serverURL}/graphql` added
### Development