Add Lightning page with services (#3308)

* Add Lightning page with services

* Adapt other services pages

* Display Lightning services only for internal node
This commit is contained in:
d11n
2022-01-19 03:52:05 +01:00
committed by GitHub
parent 306ff3d919
commit 51c486c15a
20 changed files with 532 additions and 368 deletions

View File

@@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace BTCPayServer.Models.StoreViewModels;
public class LightningViewModel : LightningNodeViewModel
{
public List<AdditionalServiceViewModel> Services { get; set; }
}