1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

Return continuation token (#833)

This commit is contained in:
Kyle Spearrin
2020-07-21 20:19:53 -04:00
committed by GitHub
parent 83e9468502
commit 7bf559b4b6

View File

@ -66,7 +66,7 @@ namespace Bit.Api.Public.Controllers
}
var eventResponses = result.Data.Select(e => new EventResponseModel(e));
var response = new ListResponseModel<EventResponseModel>(eventResponses);
var response = new ListResponseModel<EventResponseModel>(eventResponses, result.ContinuationToken);
return new JsonResult(response);
}
}