summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-01-29 21:24:34 +0000
committerErik Johnston <erik@matrix.org>2019-01-29 21:24:34 +0000
commit47e2dd1994c27f7d91b092954fcd9ed79ca9f822 (patch)
tree3a54095110ffa49b577fa94e86759b7fa539bedf /synapse/api
parentAdd docstring (diff)
downloadsynapse-47e2dd1994c27f7d91b092954fcd9ed79ca9f822.tar.xz
Drop vdh support
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/constants.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py

index 042a640f0a..302e1e2f1f 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py
@@ -105,7 +105,6 @@ class RoomVersions(object): V1 = "1" V2 = "2" V3 = "3" # Not currently fully supported, so we don't add to known versions below - VDH_TEST = "vdh-test-version" STATE_V2_TEST = "state-v2-test" @@ -117,7 +116,6 @@ DEFAULT_ROOM_VERSION = RoomVersions.V1 KNOWN_ROOM_VERSIONS = { RoomVersions.V1, RoomVersions.V2, - RoomVersions.VDH_TEST, RoomVersions.STATE_V2_TEST, }