mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 13:41:53 +03:00
Add threaded messaging feature flag
This commit is contained in:
parent
72acd5a611
commit
6868478044
2 changed files with 7 additions and 0 deletions
|
@ -808,6 +808,7 @@
|
||||||
"Render LaTeX maths in messages": "Render LaTeX maths in messages",
|
"Render LaTeX maths in messages": "Render LaTeX maths in messages",
|
||||||
"Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.": "Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.",
|
"Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.": "Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.",
|
||||||
"Message Pinning": "Message Pinning",
|
"Message Pinning": "Message Pinning",
|
||||||
|
"Threaded messaging": "Threaded messaging",
|
||||||
"Custom user status messages": "Custom user status messages",
|
"Custom user status messages": "Custom user status messages",
|
||||||
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
|
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
|
||||||
"Render simple counters in room header": "Render simple counters in room header",
|
"Render simple counters in room header": "Render simple counters in room header",
|
||||||
|
|
|
@ -239,6 +239,12 @@ export const SETTINGS: {[setting: string]: ISetting} = {
|
||||||
supportedLevels: LEVELS_FEATURE,
|
supportedLevels: LEVELS_FEATURE,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
"feature_threading": {
|
||||||
|
isFeature: true,
|
||||||
|
displayName: _td("Threaded messaging"),
|
||||||
|
supportedLevels: LEVELS_FEATURE,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
"feature_custom_status": {
|
"feature_custom_status": {
|
||||||
isFeature: true,
|
isFeature: true,
|
||||||
displayName: _td("Custom user status messages"),
|
displayName: _td("Custom user status messages"),
|
||||||
|
|
Loading…
Reference in a new issue