1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-18 05:42:00 +03:00

Allow passing a next_batch token into /search for backfill

This commit is contained in:
Richard van der Hoff
2015-12-18 16:23:48 +00:00
parent da560ffeff
commit 13fcff9688

View File

@@ -2098,14 +2098,19 @@ MatrixClient.prototype.searchMessageText = function(opts, callback) {
/** /**
* Perform a server-side search. * Perform a server-side search.
* @param {Object} opts * @param {Object} opts
* @param {string} opts.next_batch the batch token to pass in the query string
* @param {Object} opts.body the JSON object to pass to the request body. * @param {Object} opts.body the JSON object to pass to the request body.
* @param {module:client.callback} callback Optional. * @param {module:client.callback} callback Optional.
* @return {module:client.Promise} Resolves: TODO * @return {module:client.Promise} Resolves: TODO
* @return {module:http-api.MatrixError} Rejects: with an error response. * @return {module:http-api.MatrixError} Rejects: with an error response.
*/ */
MatrixClient.prototype.search = function(opts, callback) { MatrixClient.prototype.search = function(opts, callback) {
var queryparams = {};
if (opts.next_batch) {
queryparams.next_batch = opts.next_batch;
}
return this._http.authedRequest( return this._http.authedRequest(
callback, "POST", "/search", undefined, opts.body callback, "POST", "/search", queryparams, opts.body
); );
}; };