1
0
mirror of https://github.com/bitwarden/server synced 2026-02-13 06:53:56 +00:00
Files
server/src/Billing/Services/IPayPalIPNClient.cs
Alex Morask 6cc53b4739 Fix PayPal IPN Logging (#3768)
* Remove request logging, fix txn_id correlation

* Respond 400 when txn_id is missing

* More cleanup
2024-02-08 15:37:41 +00:00

7 lines
139 B
C#

namespace Bit.Billing.Services;
public interface IPayPalIPNClient
{
Task<bool> VerifyIPN(string transactionId, string formData);
}