summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-03-22 14:28:19 +0100
committerGitHub <noreply@github.com>2021-03-22 14:28:19 +0100
commite09838c78fe63a7d702ac87dca8365310457bef5 (patch)
treee4877c8022cda6b7953edc8066a6af8dc329082a /synapse/config/experimental.py
parentfix mypy (diff)
parentIncorporate review (diff)
downloadsynapse-e09838c78fe63a7d702ac87dca8365310457bef5.tar.xz
Merge pull request #9644 from matrix-org/babolivier/msc3026
Implement MSC3026: busy presence state
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 5554bcea8a..86f4d9af9d 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -27,6 +27,7 @@ class ExperimentalConfig(Config):
 
         # MSC2858 (multiple SSO identity providers)
         self.msc2858_enabled = experimental.get("msc2858_enabled", False)  # type: bool
-
         # Spaces (MSC1772, MSC2946, etc)
         self.spaces_enabled = experimental.get("spaces_enabled", False)  # type: bool
+        # MSC3026 (busy presence state)
+        self.msc3026_enabled = experimental.get("msc3026_enabled", False)  # type: bool