diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-03-18 18:37:19 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2021-03-18 18:37:19 +0100 |
commit | 066c703729d72b5da8bb6574d7f7f5f13e12f773 (patch) | |
tree | ae94a3107441cb06b3d26c6811381470ed27fe22 /synapse/config | |
parent | Implement MSC3026: busy presence state (diff) | |
download | synapse-066c703729d72b5da8bb6574d7f7f5f13e12f773.tar.xz |
Move support for MSC3026 behind an experimental flag
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 b1c1c51e4d..2f0cd0cfdf 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -27,3 +27,5 @@ class ExperimentalConfig(Config): # MSC2858 (multiple SSO identity providers) self.msc2858_enabled = experimental.get("msc2858_enabled", False) # type: bool + # MSC3026 (busy presence state) + self.msc3026_enabled = experimental.get("msc3026_enabled", False) # type: bool |