mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 22:28:54 +01:00
Never notify for member events. This fixes https://github.com/vector-im/vector-web/issues/828
This commit is contained in:
parent
647b041d1a
commit
3b554bda26
1 changed files with 21 additions and 20 deletions
|
@ -160,7 +160,27 @@ BASE_APPEND_OVRRIDE_RULES = [
|
||||||
'actions': [
|
'actions': [
|
||||||
'dont_notify',
|
'dont_notify',
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
# Will we sometimes want to know about people joining and leaving?
|
||||||
|
# Perhaps: if so, this could be expanded upon. Seems the most usual case
|
||||||
|
# is that we don't though. We add this override rule so that even if
|
||||||
|
# the room rule is set to notify, we don't get notifications about
|
||||||
|
# join/leave/avatar/displayname events.
|
||||||
|
# See also: https://matrix.org/jira/browse/SYN-607
|
||||||
|
{
|
||||||
|
'rule_id': 'global/override/.m.rule.member_event',
|
||||||
|
'conditions': [
|
||||||
|
{
|
||||||
|
'kind': 'event_match',
|
||||||
|
'key': 'type',
|
||||||
|
'pattern': 'm.room.member',
|
||||||
|
'_id': '_member',
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'actions': [
|
||||||
|
'dont_notify'
|
||||||
|
]
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -261,25 +281,6 @@ BASE_APPEND_UNDERRIDE_RULES = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
# This is too simple: https://matrix.org/jira/browse/SYN-607
|
|
||||||
# Removing for now
|
|
||||||
# {
|
|
||||||
# 'rule_id': 'global/underride/.m.rule.member_event',
|
|
||||||
# 'conditions': [
|
|
||||||
# {
|
|
||||||
# 'kind': 'event_match',
|
|
||||||
# 'key': 'type',
|
|
||||||
# 'pattern': 'm.room.member',
|
|
||||||
# '_id': '_member',
|
|
||||||
# }
|
|
||||||
# ],
|
|
||||||
# 'actions': [
|
|
||||||
# 'notify', {
|
|
||||||
# 'set_tweak': 'highlight',
|
|
||||||
# 'value': False
|
|
||||||
# }
|
|
||||||
# ]
|
|
||||||
# },
|
|
||||||
{
|
{
|
||||||
'rule_id': 'global/underride/.m.rule.message',
|
'rule_id': 'global/underride/.m.rule.message',
|
||||||
'conditions': [
|
'conditions': [
|
||||||
|
|
Loading…
Reference in a new issue