aboutsummaryrefslogtreecommitdiff
path: root/internal/pushrules/default_content.go
blob: a055ba03cdc75297b30cb80f5f2fc0732ee1c64f (plain)
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
package pushrules

func defaultContentRules(localpart string) []*Rule {
	return []*Rule{
		mRuleContainsUserNameDefinition(localpart),
	}
}

const (
	MRuleContainsUserName = ".m.rule.contains_user_name"
)

func mRuleContainsUserNameDefinition(localpart string) *Rule {
	return &Rule{
		RuleID:  MRuleContainsUserName,
		Default: true,
		Enabled: true,
		Pattern: &localpart,
		Actions: []*Action{
			{Kind: NotifyAction},
			{
				Kind:  SetTweakAction,
				Tweak: SoundTweak,
				Value: "default",
			},
			{
				Kind:  SetTweakAction,
				Tweak: HighlightTweak,
			},
		},
	}
}