Added COURSE_CATALOG_URL_ROOT to django settings

This commit is contained in:
Saleem Latif
2020-06-18 13:09:23 +05:00
parent 02305408fd
commit 85bf89db3e
3 changed files with 6 additions and 3 deletions

View File

@@ -486,7 +486,8 @@ FEATURES['ORGANIZATIONS_APP'] = True
# Financial assistance page
FEATURES['ENABLE_FINANCIAL_ASSISTANCE_FORM'] = True
COURSE_CATALOG_API_URL = 'https://catalog.example.com/api/v1'
COURSE_CATALOG_URL_ROOT = 'https://catalog.example.com'
COURSE_CATALOG_API_URL = '{}/api/v1'.format(COURSE_CATALOG_URL_ROOT)
COMPREHENSIVE_THEME_DIRS = [REPO_ROOT / "themes", REPO_ROOT / "common/test"]
COMPREHENSIVE_THEME_LOCALE_PATHS = [REPO_ROOT / "themes/conf/locale", ]