diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-04-06 16:26:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 16:26:28 -0400 |
commit | d07d2558305057cba6a7e2cb7644c24cf2dcf9be (patch) | |
tree | 7d12d884981d2ffc275c5d10cf811606ce18ba97 /synapse/api/constants.py | |
parent | Bump pyopenssl from 23.1.0 to 23.1.1 (#15373) (diff) | |
download | synapse-d07d2558305057cba6a7e2cb7644c24cf2dcf9be.tar.xz |
Implement MSC2175: remove the creator field from create events. (#15394)
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 0f224b34cd..c56b2f2561 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. |