diff --git a/lms/envs/common.py b/lms/envs/common.py index 10f58599aa..517b676f15 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -3578,6 +3578,7 @@ ENTERPRISE_CONSENT_API_URL = LMS_INTERNAL_ROOT_URL + '/consent/api/v1/' ENTERPRISE_SERVICE_WORKER_USERNAME = 'enterprise_worker' ENTERPRISE_API_CACHE_TIMEOUT = 3600 # Value is in seconds ENTERPRISE_CUSTOMER_LOGO_IMAGE_SIZE = 512 # Enterprise logo image size limit in KB's +ENTERPRISE_CATALOG_INTERNAL_ROOT_URL = 'http://enterprise.catalog.app:18160' ############## ENTERPRISE SERVICE LMS CONFIGURATION ################################## # The LMS has some features embedded that are related to the Enterprise service, but diff --git a/lms/envs/production.py b/lms/envs/production.py index 557a716b7a..2e54a4b954 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -1025,6 +1025,11 @@ ENTERPRISE_API_CACHE_TIMEOUT = ENV_TOKENS.get( 'ENTERPRISE_API_CACHE_TIMEOUT', ENTERPRISE_API_CACHE_TIMEOUT ) +ENTERPRISE_CATALOG_INTERNAL_ROOT_URL = ENV_TOKENS.get( + 'ENTERPRISE_CATALOG_INTERNAL_ROOT_URL', + ENTERPRISE_CATALOG_INTERNAL_ROOT_URL +) + ############## ENTERPRISE SERVICE LMS CONFIGURATION ################################## # The LMS has some features embedded that are related to the Enterprise service, but