diff options
author | David Baker <dave@matrix.org> | 2015-03-06 15:03:34 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-03-06 15:03:34 +0000 |
commit | e7d7152c3c88467e045f7c39e60e3ffeab40139b (patch) | |
tree | 0b864126f16c63ef0cfb284268e94ed0cf00014c /synapse | |
parent | Update CHANGES (diff) | |
download | synapse-e7d7152c3c88467e045f7c39e60e3ffeab40139b.tar.xz |
Remove the fallback rule - we probably don't want to be notifying for everything even if we don't know what it is.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/baserules.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index eddc7fcbe2..0c91e77c62 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -190,13 +190,5 @@ def make_base_underride_rules(user): 'value': 'ring' } ] - }, - { - 'rule_id': 'global/underride/.m.rule.fallback', - 'conditions': [ - ], - 'actions': [ - 'notify', - ] - }, + } ] |