diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-11-03 16:21:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 16:21:31 +0000 |
commit | 86c5a710d8b4212f8a8a668d7d4a79c0bb371508 (patch) | |
tree | cfa397b2ba6170a67ad1a6a33fa302846fc05bf3 /synapse/config | |
parent | Use maintained action to install Rust in latest deps/twisted trunk jobs (#14351) (diff) | |
download | synapse-86c5a710d8b4212f8a8a668d7d4a79c0bb371508.tar.xz |
Implement MSC3912: Relation-based redactions (#14260)
Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
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 d9bdd66d55..d4b71d1673 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -128,3 +128,6 @@ class ExperimentalConfig(Config): self.msc3886_endpoint: Optional[str] = experimental.get( "msc3886_endpoint", None ) + + # MSC3912: Relation-based redactions. + self.msc3912_enabled: bool = experimental.get("msc3912_enabled", False) |