diff options
author | Erik Johnston <erik@matrix.org> | 2022-02-17 17:22:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 17:22:55 +0000 |
commit | 3f4d25a48ba17a1e2bcc6510f6cf6de7dd496a11 (patch) | |
tree | 558c324b9af53145104d1ce13688f81960b7136c /synapse/config/experimental.py | |
parent | Allow modules to set a display name on registration (#12009) (diff) | |
download | synapse-3f4d25a48ba17a1e2bcc6510f6cf6de7dd496a11.tar.xz |
Remove unstable MSC3283 flags (#12018)
Fixes #11962
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 12b5638cf8..bcdeb9ee23 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -41,9 +41,6 @@ class ExperimentalConfig(Config): # MSC3244 (room version capabilities) self.msc3244_enabled: bool = experimental.get("msc3244_enabled", True) - # MSC3283 (set displayname, avatar_url and change 3pid capabilities) - self.msc3283_enabled: bool = experimental.get("msc3283_enabled", False) - # MSC3266 (room summary api) self.msc3266_enabled: bool = experimental.get("msc3266_enabled", False) |