Merge pull request #2152 from matrix-org/jryans/room-one-to-one-push-rule

Clarify `.m.rule.room_one_to_one` push rule
pull/977/head
Travis Ralston 5 years ago committed by GitHub
commit db5ce0c69e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -159,8 +159,13 @@ paths:
],
"conditions": [
{
"is": "2",
"kind": "room_member_count"
"kind": "room_member_count",
"is": "2"
},
{
"kind": "event_match",
"key": "type",
"pattern": "m.room.message"
}
],
"default": true,

@ -0,0 +1 @@
Clarify the conditions for the ``.m.rule.room_one_to_one`` push rule.

@ -107,8 +107,13 @@
],
"conditions": [
{
"is": "2",
"kind": "room_member_count"
"kind": "room_member_count",
"is": "2"
},
{
"kind": "event_match",
"key": "type",
"pattern": "m.room.message"
}
],
"default": true,

@ -563,6 +563,11 @@ Definition:
{
"kind": "room_member_count",
"is": "2"
},
{
"kind": "event_match",
"key": "type",
"pattern": "m.room.message"
}
],
"actions": [

Loading…
Cancel
Save