mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
20 lines
619 B
C#
20 lines
619 B
C#
namespace BTCPayServer.Payments.Lightning
|
|
{
|
|
public class LightningPaymentMethodViewExtension : IPaymentMethodViewExtension
|
|
{
|
|
public LightningPaymentMethodViewExtension(PaymentMethodId paymentMethodId)
|
|
{
|
|
PaymentMethodId = paymentMethodId;
|
|
}
|
|
public PaymentMethodId PaymentMethodId { get; }
|
|
|
|
public void RegisterViews(PaymentMethodViewContext context)
|
|
{
|
|
context.RegisterCheckoutUI(new CheckoutUIPaymentMethodSettings()
|
|
{
|
|
ExtensionPartial = "Lightning/LightningLikeMethodCheckout"
|
|
});
|
|
}
|
|
}
|
|
}
|