0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-15 00:58:22 +02:00

define room dispositions for use in exposing room capabilities

This commit is contained in:
Neil Johnson 2019-01-30 10:24:24 +00:00
parent 9c850d9d5e
commit c5a0f82cca

View file

@ -109,6 +109,11 @@ class RoomVersions(object):
STATE_V2_TEST = "state-v2-test"
class RoomDisposition(object):
STABLE = "stable",
UNSTABLE = "unstable"
# the version we will give rooms which are created on this server
DEFAULT_ROOM_VERSION = RoomVersions.V1