1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[AC-2378] Added ProviderId to PayPal transaction model (#3995)

* Added ProviderId to PayPal transaction model

* Fixed issue with parsing provider id
This commit is contained in:
Conner Turnbull 2024-04-16 13:50:12 -04:00 committed by GitHub
parent 44412844a0
commit 73e049f878
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,7 @@ public class PayPalIPNTransactionModel
public DateTime PaymentDate { get; }
public Guid? UserId { get; }
public Guid? OrganizationId { get; }
public Guid? ProviderId { get; }
public bool IsAccountCredit { get; }
public PayPalIPNTransactionModel(string formData)
@ -72,6 +73,12 @@ public class PayPalIPNTransactionModel
OrganizationId = organizationId;
}
if (metadata.TryGetValue("provider_id", out var providerIdStr) &&
Guid.TryParse(providerIdStr, out var providerId))
{
ProviderId = providerId;
}
IsAccountCredit = custom.Contains("account_credit:1");
}