diff options
author | Erik Johnston <erikj@matrix.org> | 2016-09-17 15:55:24 +0100 |
---|---|---|
committer | Matrix <matrix@matrix.org> | 2016-09-17 15:55:24 +0100 |
commit | ddc89df89d26fab5c26bf4a67d4a8470cc13593d (patch) | |
tree | 86f93da68f89fb668bc8610662ce336342a95ce3 | |
parent | Merge pull request #1129 from matrix-org/erikj/fix_pubroom_pag (diff) | |
download | synapse-ddc89df89d26fab5c26bf4a67d4a8470cc13593d.tar.xz |
Enable guest access to POST /publicRooms
-rw-r--r-- | synapse/rest/client/v1/room.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py index 5584bfbfc0..45287bf05b 100644 --- a/synapse/rest/client/v1/room.py +++ b/synapse/rest/client/v1/room.py @@ -307,7 +307,7 @@ class PublicRoomListRestServlet(ClientV1RestServlet): server = parse_string(request, "server", default=None) try: - yield self.auth.get_user_by_req(request) + yield self.auth.get_user_by_req(request, allow_guest=True) except AuthError as e: # We allow people to not be authed if they're just looking at our # room list, but require auth when we proxy the request. @@ -339,7 +339,7 @@ class PublicRoomListRestServlet(ClientV1RestServlet): @defer.inlineCallbacks def on_POST(self, request): - yield self.auth.get_user_by_req(request) + yield self.auth.get_user_by_req(request, allow_guest=True) server = parse_string(request, "server", default=None) content = parse_json_object_from_request(request) |