diff options
author | Eric Eastwood <erice@element.io> | 2021-06-22 04:02:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 10:02:53 +0100 |
commit | 96f6293de51c2fcf530bb6ca3705cf596c19656f (patch) | |
tree | 0de10e4d1b6abb625984573dce136892dda7ca4a /synapse/config/experimental.py | |
parent | Implement config option `sso.update_profile_information` (#10108) (diff) | |
download | synapse-96f6293de51c2fcf530bb6ca3705cf596c19656f.tar.xz |
Add endpoints for backfilling history (MSC2716) (#9247)
Work on https://github.com/matrix-org/matrix-doc/pull/2716
Diffstat (limited to 'synapse/config/experimental.py')
-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 6ebce4b2f7..7fb1f7021f 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -29,3 +29,6 @@ class ExperimentalConfig(Config): # MSC3026 (busy presence state) self.msc3026_enabled = experimental.get("msc3026_enabled", False) # type: bool + + # MSC2716 (backfill existing history) + self.msc2716_enabled = experimental.get("msc2716_enabled", False) # type: bool |