diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-04-30 16:59:46 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-04-30 16:59:46 +0100 |
commit | 34bbbe81a605655c3d2a548a34a94a93b621ad48 (patch) | |
tree | 04ab3aea3cc803789f0ec03d78ec89ebbdcc1525 | |
parent | Register servlets (diff) | |
download | synapse-34bbbe81a605655c3d2a548a34a94a93b621ad48.tar.xz |
Fix method
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index cdf499af6d..f3707068bb 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -522,7 +522,7 @@ class ThreepidBulkLookupRestServlet(RestServlet): self.identity_handler = IdentityHandler(hs) @defer.inlineCallbacks - def on_GET(self, request): + def on_POST(self, request): """Proxy a /_matrix/identity/api/v1/bulk_lookup request to an identity server """ |