diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-08-22 10:57:54 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-10-25 19:10:24 +0100 |
commit | 0f7d1c99061075fe54a37cfe785184f095addf78 (patch) | |
tree | ffa0d8d64a962e7badf4792ea8c30ac3fc3b28ec /synapse/api | |
parent | Allow power_level_content_override=None for _send_events_for_new_room (diff) | |
download | synapse-0f7d1c99061075fe54a37cfe785184f095addf78.tar.xz |
Basic initial support for room upgrades
Currently just creates a new, empty, room, and sends a tombstone in the old room.
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index c2630c4c64..5565e516d6 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -61,6 +61,7 @@ class LoginType(object): class EventTypes(object): Member = "m.room.member" Create = "m.room.create" + Tombstone = "m.room.tombstone" JoinRules = "m.room.join_rules" PowerLevels = "m.room.power_levels" Aliases = "m.room.aliases" |