Commit 11a7a886 by Michael Frey

Merge pull request #2477 from edx/paypal-config

Fix for PayPal config.  Add missing error_url setting.
parents 787472a2 936b7185
......@@ -77,6 +77,7 @@ ECOMMERCE_PAYPAL_CLIENT_ID: 'SET-ME-PLEASE'
ECOMMERCE_PAYPAL_CLIENT_SECRET: 'SET-ME-PLEASE'
ECOMMERCE_PAYPAL_RECEIPT_URL: '{{ ECOMMERCE_LMS_URL_ROOT }}/commerce/checkout/receipt/'
ECOMMERCE_PAYPAL_CANCEL_URL: '{{ ECOMMERCE_LMS_URL_ROOT }}/commerce/checkout/cancel/'
ECOMMERCE_PAYPAL_ERROR_URL: '{{ ECOMMERCE_LMS_URL_ROOT }}/commerce/checkout/error/'
ECOMMERCE_PAYMENT_PROCESSOR_CONFIG:
cybersource:
......@@ -95,6 +96,7 @@ ECOMMERCE_PAYMENT_PROCESSOR_CONFIG:
client_secret: '{{ ECOMMERCE_PAYPAL_CLIENT_SECRET }}'
receipt_url: '{{ ECOMMERCE_PAYPAL_RECEIPT_URL }}'
cancel_url: '{{ ECOMMERCE_PAYPAL_CANCEL_URL }}'
error_url: '{{ ECOMMERCE_PAYPAL_ERROR_URL }}'
# Theming
ECOMMERCE_PLATFORM_NAME: 'Your Platform Name Here'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment