Add Disqus & fix ux

This commit is contained in:
Kukks
2018-12-31 11:38:05 +01:00
parent 66e786a1b0
commit 3dc250f801
9 changed files with 192 additions and 30 deletions

View File

@@ -19,15 +19,34 @@ namespace BTCPayServer.Models.AppViewModels
public string NotificationUrl { get; set; }
[Required]
[Display(Name = "Enabled, Allow crowdfund to be publicly visible( still visible to you)")]
public bool Enabled { get; set; } = false;
[Required]
[Display(Name = "Enable background animations on new payments")]
public bool AnimationsEnabled { get; set; } = true;
[Required]
[Display(Name = "Enable sounds on new payments")]
public bool SoundsEnabled { get; set; } = true;
[Required]
[Display(Name = "Enable Disqus Comments")]
public bool DisqusEnabled { get; set; } = true;
[Display(Name = "Disqus Shortname")]
public string DisqusShortname { get; set; }
[Display(Name = "Disqus Api Key")]
public string DisqusAPIKey { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
[Required]
[MaxLength(5)]
[Display(Name = "The primary currency used for targets and stats")]
public string TargetCurrency { get; set; }
public string TargetCurrency { get; set; } = "BTC";
[Display(Name = "Set a Target amount ")]
public decimal? TargetAmount { get; set; }
@@ -44,5 +63,6 @@ namespace BTCPayServer.Models.AppViewModels
public string CustomCSSLink { get; set; }
public string EmbeddedCSS { get; set; }
}
}