mirror of
https://github.com/bitwarden/server
synced 2025-12-19 09:43:25 +00:00
setup: process paypal with stripe subscription
This commit is contained in:
@@ -95,7 +95,7 @@ namespace Bit.Core.Models.Table
|
||||
switch(Gateway)
|
||||
{
|
||||
case GatewayType.Stripe:
|
||||
paymentService = new StripePaymentService();
|
||||
paymentService = new StripePaymentService(globalSettings);
|
||||
break;
|
||||
case GatewayType.Braintree:
|
||||
paymentService = new BraintreePaymentService(globalSettings);
|
||||
|
||||
@@ -144,7 +144,7 @@ namespace Bit.Core.Models.Table
|
||||
switch(Gateway)
|
||||
{
|
||||
case GatewayType.Stripe:
|
||||
paymentService = new StripePaymentService();
|
||||
paymentService = new StripePaymentService(globalSettings);
|
||||
break;
|
||||
case GatewayType.Braintree:
|
||||
paymentService = new BraintreePaymentService(globalSettings);
|
||||
|
||||
Reference in New Issue
Block a user