diff options
author | Erik Johnston <erik@matrix.org> | 2015-11-05 17:52:32 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-11-05 17:52:32 +0000 |
commit | 6be1b4b113400053a82f8df992409f93356668a0 (patch) | |
tree | 5b17dc38334b96b8c884bfd7098c8d6bb1ccf4eb /synapse/rest/client/v1/room.py | |
parent | Exchange 3pid invites for m.room.member invites (diff) | |
parent | Be explicit about what we're doing (diff) | |
download | synapse-6be1b4b113400053a82f8df992409f93356668a0.tar.xz |
Merge pull request #350 from matrix-org/erikj/search
Implement pagination, order by and groups in search
Diffstat (limited to 'synapse/rest/client/v1/room.py')
-rw-r--r-- | synapse/rest/client/v1/room.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py index 3628298376..6e0d93766b 100644 --- a/synapse/rest/client/v1/room.py +++ b/synapse/rest/client/v1/room.py @@ -600,7 +600,8 @@ class SearchRestServlet(ClientV1RestServlet): content = _parse_json(request) - results = yield self.handlers.search_handler.search(auth_user, content) + batch = request.args.get("next_batch", [None])[0] + results = yield self.handlers.search_handler.search(auth_user, content, batch) defer.returnValue((200, results)) |