diff options
author | Matthew Hodgson <matthew@matrix.org> | 2017-03-31 13:54:26 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2017-03-31 13:54:26 +0100 |
commit | 9ee397b440c01f2dd170c7f7341cb47b90cf2762 (patch) | |
tree | dd467750e417e74f1d1edf6429706b7b07dbcbf5 /synapse/rest | |
parent | enable guest access for the 3pl/3pid APIs (diff) | |
download | synapse-9ee397b440c01f2dd170c7f7341cb47b90cf2762.tar.xz |
switch to allow_guest=True for authing 3Ps as per PR feedback
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v2_alpha/thirdparty.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py index ee2f158d03..6fceb23e26 100644 --- a/synapse/rest/client/v2_alpha/thirdparty.py +++ b/synapse/rest/client/v2_alpha/thirdparty.py @@ -36,6 +36,8 @@ class ThirdPartyProtocolsServlet(RestServlet): @defer.inlineCallbacks def on_GET(self, request): + yield self.auth.get_user_by_req(request, allow_guest=True) + protocols = yield self.appservice_handler.get_3pe_protocols() defer.returnValue((200, protocols)) @@ -52,6 +54,8 @@ class ThirdPartyProtocolServlet(RestServlet): @defer.inlineCallbacks def on_GET(self, request, protocol): + yield self.auth.get_user_by_req(request, allow_guest=True) + protocols = yield self.appservice_handler.get_3pe_protocols( only_protocol=protocol, ) @@ -73,6 +77,8 @@ class ThirdPartyUserServlet(RestServlet): @defer.inlineCallbacks def on_GET(self, request, protocol): + yield self.auth.get_user_by_req(request, allow_guest=True) + fields = request.args fields.pop("access_token", None) @@ -95,6 +101,8 @@ class ThirdPartyLocationServlet(RestServlet): @defer.inlineCallbacks def on_GET(self, request, protocol): + yield self.auth.get_user_by_req(request, allow_guest=True) + fields = request.args fields.pop("access_token", None) |