mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
20 lines
648 B
C#
20 lines
648 B
C#
namespace BTCPayServer.Payments.LNURLPay
|
|
{
|
|
public class LNURLPaymentMethodViewExtension : IPaymentMethodViewExtension
|
|
{
|
|
public LNURLPaymentMethodViewExtension(PaymentMethodId paymentMethodId)
|
|
{
|
|
PaymentMethodId = paymentMethodId;
|
|
}
|
|
public PaymentMethodId PaymentMethodId { get; }
|
|
|
|
public void RegisterViews(PaymentMethodViewContext context)
|
|
{
|
|
var details = context.Details;
|
|
if (details is not LNURLPayPaymentMethodDetails d)
|
|
return;
|
|
context.RegisterPaymentMethodDetails("LNURL/AdditionalPaymentMethodDetails");
|
|
}
|
|
}
|
|
}
|