Allowing custom HtmlTitle

Fix #96
This commit is contained in:
rockstardev
2018-05-03 16:51:04 -05:00
parent 674cd1486d
commit 0a449e1e8e
7 changed files with 15 additions and 1 deletions

View File

@@ -48,6 +48,10 @@ namespace BTCPayServer.Models.StoreViewModels
[Url]
public string CustomLogo { get; set; }
[Display(Name = "Custom HTML title to display on Checkout page")]
public string HtmlTitle { get; set; }
public void SetCryptoCurrencies(ExplorerClientProvider explorerProvider, string defaultCrypto)
{
var choices = explorerProvider.GetAll().Select(o => new Format() { Name = o.Item1.CryptoCode, Value = o.Item1.CryptoCode }).ToArray();