diff options
author | David Baker <dave@matrix.org> | 2015-12-02 11:26:49 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-12-02 11:26:49 +0000 |
commit | 4b1281f9b7faaa245beadb9eea3dcd869ddafc56 (patch) | |
tree | 1766195b322c31cd954708a7f705203d3521843a /synapse/push/baserules.py | |
parent | Merge pull request #392 from matrix-org/markjh/client_config (diff) | |
download | synapse-4b1281f9b7faaa245beadb9eea3dcd869ddafc56.tar.xz |
Change the m.room.message rule to be disabled by default so we only notify for 1:1 rooms / highlights out-of-the-box
Diffstat (limited to 'synapse/push/baserules.py')
-rw-r--r-- | synapse/push/baserules.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index 1f015a7f2e..7f76382a17 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -247,6 +247,7 @@ def make_base_append_underride_rules(user): }, { 'rule_id': 'global/underride/.m.rule.message', + 'enabled': False, 'conditions': [ { 'kind': 'event_match', |