mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Include the ProviderId to transaction object (#4116)
Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
This commit is contained in:
parent
06910175e2
commit
cb9ec27228
@ -79,7 +79,7 @@ public class PayPalController : Controller
|
||||
return Ok();
|
||||
}
|
||||
|
||||
var entityId = transactionModel.UserId ?? transactionModel.OrganizationId;
|
||||
var entityId = transactionModel.UserId ?? transactionModel.OrganizationId ?? transactionModel.ProviderId;
|
||||
|
||||
if (!entityId.HasValue)
|
||||
{
|
||||
@ -152,6 +152,7 @@ public class PayPalController : Controller
|
||||
CreationDate = transactionModel.PaymentDate,
|
||||
OrganizationId = transactionModel.OrganizationId,
|
||||
UserId = transactionModel.UserId,
|
||||
ProviderId = transactionModel.ProviderId,
|
||||
Type = transactionModel.IsAccountCredit ? TransactionType.Credit : TransactionType.Charge,
|
||||
Gateway = GatewayType.PayPal,
|
||||
GatewayId = transactionModel.TransactionId,
|
||||
@ -217,6 +218,7 @@ public class PayPalController : Controller
|
||||
CreationDate = transactionModel.PaymentDate,
|
||||
OrganizationId = transactionModel.OrganizationId,
|
||||
UserId = transactionModel.UserId,
|
||||
ProviderId = transactionModel.ProviderId,
|
||||
Type = TransactionType.Refund,
|
||||
Gateway = GatewayType.PayPal,
|
||||
GatewayId = transactionModel.TransactionId,
|
||||
|
Loading…
x
Reference in New Issue
Block a user