summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2023-05-24 10:23:49 -0400
committerPatrick Cloke <patrickc@matrix.org>2023-05-24 10:23:49 -0400
commit87fbff5a46079e6952f6f1f74d2910b05290e1f6 (patch)
tree955e7547256dba85a0d7b8075626925dbc9b28c5 /synapse/api/constants.py
parentFix advertised flows when SSO is not in use (diff)
parentImprove type hints for cached decorator. (#15658) (diff)
downloadsynapse-87fbff5a46079e6952f6f1f74d2910b05290e1f6.tar.xz
Merge remote-tracking branch 'origin/develop' into hughns/msc3882-r1
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py

index 0f224b34cd..cde9a2ecef 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py
@@ -215,6 +215,8 @@ class EventContentFields: FEDERATE: Final = "m.federate" # The creator of the room, as used in `m.room.create` events. + # + # This is deprecated in MSC2175. ROOM_CREATOR: Final = "creator" # Used in m.room.guest_access events. @@ -255,6 +257,7 @@ class AccountDataTypes: DIRECT: Final = "m.direct" IGNORED_USER_LIST: Final = "m.ignored_user_list" TAG: Final = "m.tag" + PUSH_RULES: Final = "m.push_rules" class HistoryVisibility: