mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-05-02 17:24:48 -04:00
Add v2 room version
This commit is contained in:
parent
678ad155a2
commit
df89f8afb8
2 changed files with 5 additions and 1 deletions
|
@ -102,6 +102,7 @@ class ThirdPartyEntityKind(object):
|
|||
|
||||
class RoomVersions(object):
|
||||
V1 = "1"
|
||||
V2 = "2"
|
||||
VDH_TEST = "vdh-test-version"
|
||||
STATE_V2_TEST = "state-v2-test"
|
||||
|
||||
|
@ -113,6 +114,7 @@ DEFAULT_ROOM_VERSION = RoomVersions.V1
|
|||
# until we have a working v2.
|
||||
KNOWN_ROOM_VERSIONS = {
|
||||
RoomVersions.V1,
|
||||
RoomVersions.V2,
|
||||
RoomVersions.VDH_TEST,
|
||||
RoomVersions.STATE_V2_TEST,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue