diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-09-21 15:39:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-21 14:39:01 +0000 |
commit | 8ae42ab8fa3c6b52d74c24daa7ca75a478fa4fbb (patch) | |
tree | deb3a81241a31a811c26e5bfd64ac56cfc1e83aa /synapse/config | |
parent | Add cache invalidation across workers to module API (#13667) (diff) | |
download | synapse-8ae42ab8fa3c6b52d74c24daa7ca75a478fa4fbb.tar.xz |
Support enabling/disabling pushers (from MSC3881) (#13799)
Partial implementation of MSC3881
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 702b81e636..f4541a8db0 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -93,3 +93,6 @@ class ExperimentalConfig(Config): # MSC3852: Expose last seen user agent field on /_matrix/client/v3/devices. self.msc3852_enabled: bool = experimental.get("msc3852_enabled", False) + + # MSC3881: Remotely toggle push notifications for another client + self.msc3881_enabled: bool = experimental.get("msc3881_enabled", False) |