Merge pull request #6658 from matrix-org/gsouquet/threaded-messaging-2349

This commit is contained in:
Germain 2021-09-01 08:47:10 +01:00 committed by GitHub
commit 7621a9a0f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 506 additions and 11 deletions

View file

@ -211,6 +211,15 @@ export const SETTINGS: {[setting: string]: ISetting} = {
supportedLevels: LEVELS_FEATURE,
default: false,
},
"feature_thread": {
isFeature: true,
// Requires a reload as we change an option flag on the `js-sdk`
// And the entire sync history needs to be parsed again
controller: new ReloadOnChangeController(),
displayName: _td("Threaded messaging"),
supportedLevels: LEVELS_FEATURE,
default: false,
},
"feature_custom_status": {
isFeature: true,
displayName: _td("Custom user status messages"),