diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-15 13:22:44 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-15 13:22:44 +0000 |
commit | 4a4d2e17bc28562cc6d0de55bc8c8c05335414cd (patch) | |
tree | 1402aad4af8a3b2232817b240c03aa0a8883c626 /synapse/api/urls.py | |
parent | Newsfile (diff) | |
download | synapse-4a4d2e17bc28562cc6d0de55bc8c8c05335414cd.tar.xz |
Add /v2/invite federation API
Diffstat (limited to 'synapse/api/urls.py')
-rw-r--r-- | synapse/api/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/urls.py b/synapse/api/urls.py index ba019001ff..8102176653 100644 --- a/synapse/api/urls.py +++ b/synapse/api/urls.py @@ -26,6 +26,7 @@ CLIENT_PREFIX = "/_matrix/client/api/v1" CLIENT_V2_ALPHA_PREFIX = "/_matrix/client/v2_alpha" FEDERATION_PREFIX = "/_matrix/federation" FEDERATION_V1_PREFIX = FEDERATION_PREFIX + "/v1" +FEDERATION_V2_PREFIX = FEDERATION_PREFIX + "/v2" STATIC_PREFIX = "/_matrix/static" WEB_CLIENT_PREFIX = "/_matrix/client" CONTENT_REPO_PREFIX = "/_matrix/content" |