diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-12-02 15:45:04 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-12-02 15:45:04 +0000 |
commit | 872c1348077c1ed0f4b8066dc15b600ca816b843 (patch) | |
tree | 231b89adea0acac292dfc31d157001d5fcbbf2e9 /synapse/rest/client/v2_alpha/keys.py | |
parent | Merge pull request #412 from matrix-org/erikj/search (diff) | |
download | synapse-872c1348077c1ed0f4b8066dc15b600ca816b843.tar.xz |
Update endpoints to reflect current spec
Diffstat (limited to 'synapse/rest/client/v2_alpha/keys.py')
-rw-r--r-- | synapse/rest/client/v2_alpha/keys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/keys.py b/synapse/rest/client/v2_alpha/keys.py index c55e85920f..753f2988a1 100644 --- a/synapse/rest/client/v2_alpha/keys.py +++ b/synapse/rest/client/v2_alpha/keys.py @@ -54,7 +54,7 @@ class KeyUploadServlet(RestServlet): }, } """ - PATTERNS = client_v2_patterns("/keys/upload/(?P<device_id>[^/]*)") + PATTERNS = client_v2_patterns("/keys/upload/(?P<device_id>[^/]*)", releases=()) def __init__(self, hs): super(KeyUploadServlet, self).__init__() |