diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-03-18 18:24:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 18:24:16 +0000 |
commit | 004234f03abad58b2de28abff406391a6d182e48 (patch) | |
tree | 478881df270c2b6e032c71429beaf5047b96e89d /synapse/config | |
parent | Consistently check whether a password may be set for a user. (#9636) (diff) | |
download | synapse-004234f03abad58b2de28abff406391a6d182e48.tar.xz |
Initial spaces summary API (#9643)
This is very bare-bones for now: federation will come soon, while pagination is descoped for now but will come later.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index b1c1c51e4d..5554bcea8a 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -27,3 +27,6 @@ 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 |