Show more invoices on the invoice page, better search button

This commit is contained in:
nicolas.dorier
2018-04-09 17:53:43 +09:00
parent 25fe32c3f8
commit 1ddf47256f
4 changed files with 19 additions and 11 deletions

View File

@@ -358,7 +358,7 @@ namespace BTCPayServer.Controllers
[Route("invoices")]
[Authorize(AuthenticationSchemes = "Identity.Application")]
[BitpayAPIConstraint(false)]
public async Task<IActionResult> ListInvoices(string searchTerm = null, int skip = 0, int count = 20)
public async Task<IActionResult> ListInvoices(string searchTerm = null, int skip = 0, int count = 50)
{
var model = new InvoicesModel();
var filterString = new SearchString(searchTerm);