diff options
author | Will Hunt <will@half-shot.uk> | 2022-12-01 13:46:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 13:46:24 +0000 |
commit | 71f3e53ad010ba8c219f1076d40915b985760ed9 (patch) | |
tree | f3ffe567b1cf39e9897e870970797f695de436a1 /synapse/config | |
parent | Merge branch 'release-v1.73' into develop (diff) | |
download | synapse-71f3e53ad010ba8c219f1076d40915b985760ed9.tar.xz |
Add `push.enabled` option to disable push notification calculation (#14551)
* Add initial option * changelog * Some more linting
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/push.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/config/push.py b/synapse/config/push.py index 979b128eae..3b5378e6ea 100644 --- a/synapse/config/push.py +++ b/synapse/config/push.py @@ -26,6 +26,7 @@ class PushConfig(Config): def read_config(self, config: JsonDict, **kwargs: Any) -> None: push_config = config.get("push") or {} self.push_include_content = push_config.get("include_content", True) + self.enable_push = push_config.get("enabled", True) self.push_group_unread_count_by_room = push_config.get( "group_unread_count_by_room", True ) |