diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-14 11:54:37 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-14 11:54:37 +0100 |
commit | d253a3553967948e277929549a4ae6367584342f (patch) | |
tree | efc1df8dd5631e2058ed4bec4b6dad953ce51929 /synapse/api/urls.py | |
parent | Added a urls module for keeping client and federation prefixes. (diff) | |
download | synapse-d253a3553967948e277929549a4ae6367584342f.tar.xz |
Added web client prefix
Diffstat (limited to 'synapse/api/urls.py')
-rw-r--r-- | synapse/api/urls.py | 3 |
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 |