mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Domain Mapping: Passthrough query params when redirecting * Clean up Pager * Use current URL when paging * Refactor
16 lines
322 B
C#
16 lines
322 B
C#
using BTCPayServer.Models;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Components
|
|
{
|
|
public class Pager : ViewComponent
|
|
{
|
|
public Pager()
|
|
{
|
|
}
|
|
public IViewComponentResult Invoke(BasePagingViewModel viewModel)
|
|
{
|
|
return View(viewModel);
|
|
}
|
|
}
|
|
}
|