mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05: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