summary refs log tree commit diff
path: root/synapse/api/urls.py
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-08-14 11:54:37 +0100
committerKegan Dougal <kegan@matrix.org>2014-08-14 11:54:37 +0100
commitd253a3553967948e277929549a4ae6367584342f (patch)
treeefc1df8dd5631e2058ed4bec4b6dad953ce51929 /synapse/api/urls.py
parentAdded a urls module for keeping client and federation prefixes. (diff)
downloadsynapse-d253a3553967948e277929549a4ae6367584342f.tar.xz
Added web client prefix
Diffstat (limited to 'synapse/api/urls.py')
-rw-r--r--synapse/api/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/api/urls.py b/synapse/api/urls.py
index 7a6fff7d18..04970adb71 100644
--- a/synapse/api/urls.py
+++ b/synapse/api/urls.py
@@ -16,4 +16,5 @@
 """Contains the URL paths to prefix various aspects of the server with. """
 
 CLIENT_PREFIX = "/matrix/client/api/v1"
-FEDERATION_PREFIX = "/matrix/federation/v1"
\ No newline at end of file
+FEDERATION_PREFIX = "/matrix/federation/v1"
+WEB_CLIENT_PREFIX = "/matrix/client"
\ No newline at end of file