From ed1827ff28deaee63fcedcb970ab86a655dc4e99 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Mon, 13 Aug 2018 15:10:59 +0900 Subject: [PATCH] Fix not showing ssh service if no LND --- BTCPayServer/BTCPayServer.csproj | 2 +- BTCPayServer/Views/Server/Services.cshtml | 79 +++++++++++------------ 2 files changed, 39 insertions(+), 42 deletions(-) diff --git a/BTCPayServer/BTCPayServer.csproj b/BTCPayServer/BTCPayServer.csproj index f561ed11d..bad0b56b1 100644 --- a/BTCPayServer/BTCPayServer.csproj +++ b/BTCPayServer/BTCPayServer.csproj @@ -2,7 +2,7 @@ Exe netcoreapp2.1 - 1.0.2.90 + 1.0.2.91 NU1701,CA1816,CA1308,CA1810,CA2208 diff --git a/BTCPayServer/Views/Server/Services.cshtml b/BTCPayServer/Views/Server/Services.cshtml index f271a8cb3..f487a1075 100644 --- a/BTCPayServer/Views/Server/Services.cshtml +++ b/BTCPayServer/Views/Server/Services.cshtml @@ -13,49 +13,46 @@
- @if(Model.LNDServices.Count != 0) - { -
-
-
LND nodes
- You can get access to internal LND services here. For gRPC, only BTC is supported. -
-
- - - - - - - - - - @foreach(var lnd in Model.LNDServices) - { - - - - - - } - @if(Model.HasSSH) - { - - - - - - } - -
CryptoAccess TypeActions
@lnd.Crypto@lnd.Type - See information -
NoneSSH - See information -
-
+
+
+ You can get access here to LND-gRPC or SSH services exposed by your server
- } + +
+ + + + + + + + + + @foreach(var lnd in Model.LNDServices) + { + + + + + + } + @if(Model.HasSSH) + { + + + + + + } + +
CryptoAccess TypeActions
@lnd.Crypto@lnd.Type + See information +
NoneSSH + See information +
+
+
@section Scripts {