diff options
author | Aaron R <aaron@raim.ist> | 2021-11-16 07:47:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 14:47:58 +0100 |
commit | dfa536490ee2295d664160362c6339d5e39b6b85 (patch) | |
tree | a5b36b04092abfc2f35d70e140be9a1af6f610b1 /synapse/rest/client/keys.py | |
parent | Add most missing type hints to synapse.util (#11328) (diff) | |
download | synapse-dfa536490ee2295d664160362c6339d5e39b6b85.tar.xz |
Add support for `/_matrix/client/v3` APIs (#11318)
This is one of the changes required to support Matrix 1.1 Signed-off-by: Aaron Raimist <aaron@raim.ist>
Diffstat (limited to 'synapse/rest/client/keys.py')
-rw-r--r-- | synapse/rest/client/keys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/keys.py b/synapse/rest/client/keys.py index 7281b2ee29..730c18f08f 100644 --- a/synapse/rest/client/keys.py +++ b/synapse/rest/client/keys.py @@ -262,7 +262,7 @@ class SigningKeyUploadServlet(RestServlet): } """ - PATTERNS = client_patterns("/keys/device_signing/upload$", releases=()) + PATTERNS = client_patterns("/keys/device_signing/upload$", releases=("v3",)) def __init__(self, hs: "HomeServer"): super().__init__() |