summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-07-27 14:49:10 +0100
committerBrendan Abolivier <babolivier@matrix.org>2021-07-27 14:49:10 +0100
commit807f82187855cdfc6accbcd96e66f6e116292186 (patch)
tree8729238fd9d66c30faeaf193ba13a74fa51ec09b
parentRework room freeze and implement unfreezing the room (#100) (diff)
downloadsynapse-807f82187855cdfc6accbcd96e66f6e116292186.tar.xz
Use an org.matrix namespace for the frozen state event
Otherwise it's weird to publish the extracted module to matrix-org
-rw-r--r--synapse/third_party_rules/access_rules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/third_party_rules/access_rules.py b/synapse/third_party_rules/access_rules.py

index 01d100c82d..9f2dded5f8 100644 --- a/synapse/third_party_rules/access_rules.py +++ b/synapse/third_party_rules/access_rules.py
@@ -27,7 +27,7 @@ from synapse.util.frozenutils import unfreeze logger = logging.getLogger(__name__) ACCESS_RULES_TYPE = "im.vector.room.access_rules" -FROZEN_STATE_TYPE = "io.element.room.frozen" +FROZEN_STATE_TYPE = "org.matrix.room.frozen" class AccessRules: