Store: Move support URL to Checkout Appearance and improve wording (#5717)

As discussed in the recent design meeting.
This commit is contained in:
d11n
2024-02-21 18:50:38 +01:00
committed by GitHub
parent 5939e19f72
commit 354338180b
6 changed files with 19 additions and 16 deletions

View File

@@ -76,6 +76,10 @@ namespace BTCPayServer.Models.StoreViewModels
[Display(Name = "Custom HTML title to display on Checkout page")]
public string HtmlTitle { get; set; }
[Display(Name = "Support URL")]
[MaxLength(500)]
public string SupportUrl { get; set; }
[Display(Name = "Show a timer … minutes before invoice expiration")]
[Range(1, 60 * 24 * 24)]
public int DisplayExpirationTimer { get; set; }