mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
8d429f064b
* Show Lightning node availability in navigation Instead of simply communicating the setup state of the store's LN node, this now also checks its availability. Closes #5940. * Cleanups * Add Selenium test for public node page and status in nav * Cache the available lightning node result --------- Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
15 lines
411 B
C#
15 lines
411 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class StoreLightningNode
|
|
{
|
|
public string CryptoCode { get; set; }
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
|
public string Address { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public bool Available { get; set; }
|
|
public string CacheKey { get; set; }
|
|
}
|
|
}
|