summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-04-30 16:59:46 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-04-30 16:59:46 +0100
commit34bbbe81a605655c3d2a548a34a94a93b621ad48 (patch)
tree04ab3aea3cc803789f0ec03d78ec89ebbdcc1525
parentRegister servlets (diff)
downloadsynapse-34bbbe81a605655c3d2a548a34a94a93b621ad48.tar.xz
Fix method
-rw-r--r--synapse/rest/client/v2_alpha/account.py2
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
         """