mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
34 lines
596 B
Go
34 lines
596 B
Go
|
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,
|
||
|
Value: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|