Skip to content

Commit

Permalink
Update default payment method types
Browse files Browse the repository at this point in the history
  • Loading branch information
smathot committed Feb 16, 2024
1 parent 73cebaa commit 13efb0e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions heymans/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,6 @@ def validate_user(username, password):
stripe_webhook_secret = os.environ.get('STRIPE_WEBHOOK_SECRET', None)
# Additional keywords passed to stripe.checkout.Session.create to customize
# the checkout process
stripe_checkout_keywords = dict(allow_promotion_codes=True,
payment_method_types=['card', 'paypal'])
stripe_checkout_keywords = dict(
allow_promotion_codes=True,
payment_method_types=['card', 'ideal', 'bancontact', 'paypal'])

0 comments on commit 13efb0e

Please sign in to comment.