diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-09-23 18:40:59 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-09-23 18:43:34 +0100 |
commit | e3117a2a236220f89eb73f0355d00b3b3e83ce35 (patch) | |
tree | ede39a7f9d7fd1e67ada0889867ddcd7860695ba /synapse/api/urls.py | |
parent | Read signing keys using methods from syutil. convert keys that are in the wro... (diff) | |
download | synapse-e3117a2a236220f89eb73f0355d00b3b3e83ce35.tar.xz |
Add a _matrix/key/v1 resource with the verification keys of the local server
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 6314f31f7a..6dc19305b7 100644 --- a/synapse/api/urls.py +++ b/synapse/api/urls.py @@ -18,4 +18,5 @@ CLIENT_PREFIX = "/_matrix/client/api/v1" FEDERATION_PREFIX = "/_matrix/federation/v1" WEB_CLIENT_PREFIX = "/_matrix/client" -CONTENT_REPO_PREFIX = "/_matrix/content" \ No newline at end of file +CONTENT_REPO_PREFIX = "/_matrix/content" +SERVER_KEY_PREFIX = "/_matrix/key/v1" |