mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-25 20:09:21 -05:00
Ensure that 3PU lookup request fields actually get passed in
This commit is contained in:
parent
f0c73a1e7a
commit
3856582741
@ -35,7 +35,11 @@ class ThirdPartyUserServlet(RestServlet):
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def on_GET(self, request, protocol):
|
||||
fields = {} # TODO
|
||||
fields = request.args
|
||||
del fields["access_token"]
|
||||
|
||||
# TODO(paul): Some type checking on the request args might be nice
|
||||
# They should probably all be strings
|
||||
results = yield self.appservice_handler.query_3pu(protocol, fields)
|
||||
|
||||
defer.returnValue((200, results))
|
||||
|
Loading…
Reference in New Issue
Block a user