summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2019-01-29 23:07:00 +0000
committerGitHub <noreply@github.com>2019-01-29 23:07:00 +0000
commite12313ba2571c8e416136b9eb1e6620504d9a113 (patch)
treeb62b1658804c8f76cde6f5a9d24e7aff3af56438 /synapse/api/constants.py
parentMerge pull request #4514 from matrix-org/erikj/remove_event_id (diff)
parentMerge branch 'develop' of github.com:matrix-org/synapse into erikj/redactions... (diff)
downloadsynapse-e12313ba2571c8e416136b9eb1e6620504d9a113.tar.xz
Merge pull request #4499 from matrix-org/erikj/redactions_eiah
Implement rechecking of redactions for room versions v3
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index b248e193fa..4912a55785 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"
-    VDH_TEST = "vdh-test-version"
+    V3 = "3"  # Not currently fully supported, so we don't add to known versions below
     STATE_V2_TEST = "state-v2-test"
 
 
@@ -116,7 +116,6 @@ DEFAULT_ROOM_VERSION = RoomVersions.V1
 KNOWN_ROOM_VERSIONS = {
     RoomVersions.V1,
     RoomVersions.V2,
-    RoomVersions.VDH_TEST,
     RoomVersions.STATE_V2_TEST,
 }