btcpayserver/BTCPayServer/ZoneLimits.cs
Kukks 42df6d58b1 Simplify Shopify integration
Added dedicated endpoint that generates an invoice or returns an existing one as needed for a shopify order
Added rate limiter to shopify endpoint to prevent abuse
Reduce shopify js to a small file
Use events from btcpay modal to reduce constant pinging to btcpay server
Register invoice payment failures on the shopify backend.
2020-09-24 16:25:35 +02:00

11 lines
279 B
C#

namespace BTCPayServer
{
public class ZoneLimits
{
public const string Login = "btcpaylogin";
public const string Register = "btcpayregister";
public const string PayJoin = "PayJoin";
public const string Shopify = nameof(Shopify);
}
}