summary refs log tree commit diff
path: root/synapse/push/baserules.py
blob: 376d1d4d33d85165178380c4aee471fe7b47d5e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
def make_base_rules(user_name):
    rules = [
        {
            'conditions': [
                {
                    'kind': 'event_match',
                    'key': 'content.body',
                    'pattern': '*%s*' % (user_name,), # Matrix ID match
                }
            ],
            'actions': [
                'notify',
                {
                    'set_sound': 'default'
                }
            ]
        },
        {
            'conditions': [
                {
                    'kind': 'contains_display_name'
                }
            ],
            'actions': [
                'notify',
                {
                    'set_sound': 'default'
                }
            ]
        },
        {
            'conditions': [
                {
                    'kind': 'room_member_count',
                    'is': '2'
                }
            ],
            'actions': [
                'notify',
                {
                    'set_tweak': 'sound',
                    'value': 'default'
                }
            ]
        }
    ]
    for r in rules:
        r['priority_class'] = 0
    return rules