Add a new Pay Button Type : Slider

This commit is contained in:
Ludovic
2019-04-04 20:56:12 +02:00
parent 4221763f48
commit 449066449b
4 changed files with 65 additions and 7 deletions

View File

@@ -507,7 +507,7 @@ namespace BTCPayServer.Controllers
Action = nameof(UpdateChangellySettings),
Provider = "Changelly"
});
var coinSwitchEnabled = storeBlob.CoinSwitchSettings != null && storeBlob.CoinSwitchSettings.Enabled;
vm.ThirdPartyPaymentMethods.Add(new StoreViewModel.ThirdPartyPaymentMethod()
{
@@ -892,7 +892,10 @@ namespace BTCPayServer.Controllers
UrlRoot = appUrl,
PayButtonImageUrl = appUrl + "img/paybutton/pay.png",
StoreId = store.Id,
ButtonType = 0
ButtonType = 2,
Min = 1,
Max = 20,
Step = 1
};
return View(model);
}