File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,22 @@ var GetAction5 = func() []interface{} {
115
115
return actions
116
116
}
117
117
118
+ var GetAction6 = func () []interface {} {
119
+ var actions []interface {}
120
+ actions = append (actions , "notify" )
121
+ tweaks := []pushapitypes.Tweak {
122
+ {
123
+ SetTweak : "sound" ,
124
+ Value : "default" ,
125
+ },
126
+ }
127
+
128
+ for _ , v := range tweaks {
129
+ actions = append (actions , v )
130
+ }
131
+ return actions
132
+ }
133
+
118
134
var BaseRuleIds = func () map [string ]string {
119
135
rules := map [string ]string {
120
136
"global/override/.m.rule.master" : "override" ,
@@ -284,7 +300,7 @@ var BaseUnderRideRules = func() []pushapitypes.PushRule {
284
300
Pattern : "m.room.message" ,
285
301
},
286
302
},
287
- Actions : GetAction5 (),
303
+ Actions : GetAction6 (),
288
304
},
289
305
{
290
306
RuleId : "global/underride/.m.rule.encrypted" ,
You can’t perform that action at this time.
0 commit comments