fix(stripe): correcting webhook
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
namespace Hutopy.Modules.Tipping.Contracts;
|
||||
|
||||
public interface ITipPaymentNotifier
|
||||
internal interface ITipPaymentNotifier
|
||||
{
|
||||
Task NotifyPaymentSucceedAsync(
|
||||
string stripeId,
|
||||
string invoiceUrl,
|
||||
string sessionId,
|
||||
Uri receiptUrl,
|
||||
string customerEmail,
|
||||
CancellationToken ct);
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ using Hutopy.Modules.Creators.Contracts;
|
||||
|
||||
namespace Hutopy.Modules.Tipping.Contracts;
|
||||
|
||||
public interface ITipProcessor
|
||||
internal interface ITipProcessor
|
||||
{
|
||||
Task<TipCheckoutSession> CreateCheckoutSessionAsync(
|
||||
Guid tipId,
|
||||
@@ -10,7 +10,7 @@ public interface ITipProcessor
|
||||
decimal amount,
|
||||
string currency,
|
||||
string message,
|
||||
string successUrl,
|
||||
string cancelUrl,
|
||||
Uri successUrl,
|
||||
Uri cancelUrl,
|
||||
CancellationToken ct = default);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user