diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-10-21 14:39:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 14:39:16 -0400 |
commit | ba00e20234eadae66f105f8bda64e39beed9a92d (patch) | |
tree | a828912312bbc6ecbdf9d3a5d2bfe27b7296fb3f /synapse/config | |
parent | Fix adding excluded users to the private room sharing tables when joining a r... (diff) | |
download | synapse-ba00e20234eadae66f105f8bda64e39beed9a92d.tar.xz |
Add a thread relation type per MSC3440. (#11088)
Adds experimental support for MSC3440's `io.element.thread` relation type (and the aggregation for it).
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index b013a3918c..8b098ad48d 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -26,6 +26,8 @@ class ExperimentalConfig(Config): # Whether to enable experimental MSC1849 (aka relations) support self.msc1849_enabled = config.get("experimental_msc1849_support_enabled", True) + # MSC3440 (thread relation) + self.msc3440_enabled: bool = experimental.get("msc3440_enabled", False) # MSC3026 (busy presence state) self.msc3026_enabled: bool = experimental.get("msc3026_enabled", False) |