mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 02:08:32 +01:00
19 lines
479 B
C#
19 lines
479 B
C#
|
using BTCPayServer.Services;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Components.LabelManager
|
||
|
{
|
||
|
public class LabelManager : ViewComponent
|
||
|
{
|
||
|
public IViewComponentResult Invoke(WalletObjectId walletObjectId, string[] selectedLabels)
|
||
|
{
|
||
|
var vm = new LabelViewModel
|
||
|
{
|
||
|
ObjectId = walletObjectId,
|
||
|
SelectedLabels = selectedLabels
|
||
|
};
|
||
|
return View(vm);
|
||
|
}
|
||
|
}
|
||
|
}
|