Allow sounds and animation colors in crowdfund to be configured (#653)

closes #652
This commit is contained in:
Andrew Camilleri
2019-03-07 06:25:09 +01:00
committed by Nicolas Dorier
parent ef46d03760
commit 2b567de5c1
9 changed files with 102 additions and 62 deletions

View File

@@ -79,5 +79,11 @@ namespace BTCPayServer.Models.AppViewModels
public bool SortPerksByPopularity { get; set; }
[Display(Name = "Display contribution ranking")]
public bool DisplayPerksRanking { get; set; }
[Display(Name = "Sounds to play when a payment is made. One sound per line")]
public string Sounds{ get; set; }
[Display(Name = "Colors to rotate between with animation when a payment is made. First color is the default background. One color per line. Can be any valid css color value.")]
public string AnimationColors{ get; set; }
}
}