diff options
author | Šimon Brandner <simon.bra.ag@gmail.com> | 2022-06-27 21:28:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 20:28:34 +0100 |
commit | 1017f09c18b2ae6e350df1e7755ae480fd180853 (patch) | |
tree | 1659b1bfba4ef31cab1cede96156f30695bcc734 | |
parent | Add Cross-Origin-Resource-Policy header to thumbnail and download media endpo... (diff) | |
download | synapse-1017f09c18b2ae6e350df1e7755ae480fd180853.tar.xz |
Update MSC3786 implementation: Check the `state_key` (#12939)
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
-rw-r--r-- | changelog.d/12939.bugfix | 1 | ||||
-rw-r--r-- | synapse/push/baserules.py | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/changelog.d/12939.bugfix b/changelog.d/12939.bugfix new file mode 100644 index 0000000000..d9061cf8e5 --- /dev/null +++ b/changelog.d/12939.bugfix @@ -0,0 +1 @@ +Update [MSC3786](https://github.com/matrix-org/matrix-spec-proposals/pull/3786) implementation to check `state_key`. diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index 819bc9e9b6..6c0cc5a6ce 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -290,7 +290,13 @@ BASE_APPEND_OVERRIDE_RULES: List[Dict[str, Any]] = [ "key": "type", "pattern": "m.room.server_acl", "_cache_key": "_room_server_acl", - } + }, + { + "kind": "event_match", + "key": "state_key", + "pattern": "", + "_cache_key": "_room_server_acl_state_key", + }, ], "actions": [], }, |