mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 11:04:51 -04:00
Enable room version v3
This commit is contained in:
parent
e12313ba25
commit
a1b0e1879b
4 changed files with 14 additions and 4 deletions
|
@ -104,7 +104,7 @@ class ThirdPartyEntityKind(object):
|
|||
class RoomVersions(object):
|
||||
V1 = "1"
|
||||
V2 = "2"
|
||||
V3 = "3" # Not currently fully supported, so we don't add to known versions below
|
||||
V3 = "3"
|
||||
STATE_V2_TEST = "state-v2-test"
|
||||
|
||||
|
||||
|
@ -116,6 +116,7 @@ DEFAULT_ROOM_VERSION = RoomVersions.V1
|
|||
KNOWN_ROOM_VERSIONS = {
|
||||
RoomVersions.V1,
|
||||
RoomVersions.V2,
|
||||
RoomVersions.V3,
|
||||
RoomVersions.STATE_V2_TEST,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue