diff options
author | Patrick Cloke <patrickc@matrix.org> | 2022-07-06 08:31:21 -0400 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2022-08-05 08:18:08 -0400 |
commit | e0ed95a45b74fe85d5d03cc5771883581dba7ad9 (patch) | |
tree | af4fe9bc7b10d0302e2cc4873d1398a614f25b4d /synapse/config | |
parent | Return thread notification counts down sync. (diff) | |
download | synapse-e0ed95a45b74fe85d5d03cc5771883581dba7ad9.tar.xz |
Add an experimental config option.
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 c2ecd977cd..0c28182799 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -84,6 +84,8 @@ class ExperimentalConfig(Config): # MSC3772: A push rule for mutual relations. self.msc3772_enabled: bool = experimental.get("msc3772_enabled", False) + # MSC3773: Thread notifications + self.msc3773_enabled: bool = experimental.get("msc3773_enabled", False) # MSC3715: dir param on /relations. self.msc3715_enabled: bool = experimental.get("msc3715_enabled", False) |