mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
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.
10 lines
279 B
C#
10 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);
|
|
}
|
|
}
|