Merge pull request #19919 from antobinary/docs-layout
docs: info on allowOverrideClientSettingsOnCreateCall
This commit is contained in:
commit
3c2a3f7e25
@ -68,7 +68,6 @@ object Dependencies {
|
|||||||
|
|
||||||
val postgresql = "org.postgresql" % "postgresql" % Versions.postgresql
|
val postgresql = "org.postgresql" % "postgresql" % Versions.postgresql
|
||||||
val jacksonDataFormat = "com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % Versions.jacksonDataFormat
|
val jacksonDataFormat = "com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % Versions.jacksonDataFormat
|
||||||
val snakeYaml = "org.yaml" % "snakeyaml"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
object Test {
|
object Test {
|
||||||
|
@ -357,8 +357,8 @@ allowFetchAllRecordings=true
|
|||||||
# The directory where the pre-built configs are stored
|
# The directory where the pre-built configs are stored
|
||||||
configDir=/var/bigbluebutton/configs
|
configDir=/var/bigbluebutton/configs
|
||||||
|
|
||||||
# Disable this option to avoid overriding client settings through /create call
|
# Enable this option to allow overriding client settings through /create call
|
||||||
allowOverrideClientSettingsOnCreateCall=true
|
allowOverrideClientSettingsOnCreateCall=false
|
||||||
|
|
||||||
# The directory to export Json with Meeting activities (used in Learning Dashboard)
|
# The directory to export Json with Meeting activities (used in Learning Dashboard)
|
||||||
learningDashboardFilesDir=/var/bigbluebutton/learning-dashboard
|
learningDashboardFilesDir=/var/bigbluebutton/learning-dashboard
|
||||||
|
@ -402,6 +402,13 @@ const createEndpointTableData = [
|
|||||||
"required": false,
|
"required": false,
|
||||||
"type": "String",
|
"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)</>)
|
"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)</>)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ Updated in 2.7:
|
|||||||
|
|
||||||
Updated in 3.0:
|
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`).
|
- **join** - **Added:** `userdata-bbb_default_layout`. **Removed:** `defaultLayout` (replaced by `userdata-bbb_default_layout`).
|
||||||
|
|
||||||
## API Data Types
|
## API Data Types
|
||||||
|
@ -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.
|
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
|
### Development
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user