diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2024-04-09 12:11:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 17:11:50 +0100 |
commit | 657b8cc75ceef4baaa7f293d0643c1623ffb35b7 (patch) | |
tree | 7eb726642d24ef1615a6d276af7d5ea14b14389f /synapse/config | |
parent | Stabliize support for MSC3981: recurse /relations (#17023) (diff) | |
download | synapse-657b8cc75ceef4baaa7f293d0643c1623ffb35b7.tar.xz |
Stabilize support for MSC4010: push rules & account data. (#17022)
See [MSC4010](https://github.com/matrix-org/matrix-spec-proposals/pull/4010), but this is pretty much just removing an experimental flag. Part of #17021
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index cc0c91a175..fcc78d2d81 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -404,11 +404,6 @@ class ExperimentalConfig(Config): # Check that none of the other config options conflict with MSC3861 when enabled self.msc3861.check_config_conflicts(self.root) - # MSC4010: Do not allow setting m.push_rules account data. - self.msc4010_push_rules_account_data = experimental.get( - "msc4010_push_rules_account_data", False - ) - self.msc4028_push_encrypted_events = experimental.get( "msc4028_push_encrypted_events", False ) |