diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-07-17 22:11:31 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-09-04 22:03:41 -0400 |
commit | ac4746ac4bb4d9371c5a25e94ecccd83effb8b9a (patch) | |
tree | 97870a50d9ef4f3521954c9d71bb7ae09edb7c6f /synapse/rest | |
parent | implement device signature uploading/fetching (diff) | |
download | synapse-ac4746ac4bb4d9371c5a25e94ecccd83effb8b9a.tar.xz |
allow uploading signatures of master key signed by devices
Diffstat (limited to 'synapse/rest')
-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 5c288d48b7..cb3c52cb8e 100644 --- a/synapse/rest/client/v2_alpha/keys.py +++ b/synapse/rest/client/v2_alpha/keys.py @@ -303,7 +303,7 @@ class SignaturesUploadServlet(RestServlet): } } """ - PATTERNS = client_v2_patterns("/keys/signatures/upload$") + PATTERNS = client_patterns("/keys/signatures/upload$") def __init__(self, hs): """ |