summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-01-29 17:35:31 +0000
committerErik Johnston <erik@matrix.org>2019-01-29 23:09:10 +0000
commita1b0e1879b8bdc3dbff168f5948c35c423640f2a (patch)
treea68d0326fb918fd065fe1ea9ee8771ba597655e5 /synapse/api
parentMerge pull request #4499 from matrix-org/erikj/redactions_eiah (diff)
downloadsynapse-a1b0e1879b8bdc3dbff168f5948c35c423640f2a.tar.xz
Enable room version v3
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/constants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index 4912a55785..ba519005ca 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -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,
 }