mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
42df6d58b1
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.
11 lines
279 B
C#
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);
|
|
}
|
|
}
|