summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-05-15 17:37:46 +0100
committerGitHub <noreply@github.com>2019-05-15 17:37:46 +0100
commit5f027a315fbf010c213ca6f88141404ed86d05ef (patch)
tree2b4c15b40a58edcca0ac4e0646a51369c916c0c6 /synapse/api
parentMerge branch 'master' into develop (diff)
downloadsynapse-5f027a315fbf010c213ca6f88141404ed86d05ef.tar.xz
Drop support for v2_alpha API prefix (#5190)
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/urls.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/api/urls.py b/synapse/api/urls.py
index cb71d80875..3c6bddff7a 100644
--- a/synapse/api/urls.py
+++ b/synapse/api/urls.py
@@ -22,8 +22,7 @@ from six.moves.urllib.parse import urlencode
 
 from synapse.config import ConfigError
 
-CLIENT_PREFIX = "/_matrix/client/api/v1"
-CLIENT_V2_ALPHA_PREFIX = "/_matrix/client/v2_alpha"
+CLIENT_API_PREFIX = "/_matrix/client"
 FEDERATION_PREFIX = "/_matrix/federation"
 FEDERATION_V1_PREFIX = FEDERATION_PREFIX + "/v1"
 FEDERATION_V2_PREFIX = FEDERATION_PREFIX + "/v2"