Merge pull request #23942 from edx/dsheraz/PROD-1553

update cielo api settings
This commit is contained in:
Syed Muhammad Dawoud Sheraz Ali
2020-05-11 11:42:13 +05:00
committed by GitHub

View File

@@ -2097,13 +2097,12 @@ VIDEO_TRANSCRIPTS_MAX_AGE = 31536000
############################ TRANSCRIPT PROVIDERS SETTINGS ########################
# Note: These settings will also exist in video-encode-manager, so any update here
# should also be done there. Additionally, the BASE & LOGIN URL will be overridden at
# deployment as the actual URL is different from sandboxing URL.
CIELO24_SETTINGS = dict(
CIELO24_API_VERSION=1,
CIELO24_BASE_API_URL="https://sandbox.cielo24.com/api",
CIELO24_LOGIN_URL="https://sandbox.cielo24.com/api/account/login"
)
# should also be done there.
CIELO24_SETTINGS = {
'CIELO24_API_VERSION': 1,
'CIELO24_BASE_API_URL': "https://api.cielo24.com/api",
'CIELO24_LOGIN_URL': "https://api.cielo24.com/api/account/login"
}
##### shoppingcart Payment #####
PAYMENT_SUPPORT_EMAIL = 'billing@example.com'