Skip to content

Commit b20277b

Browse files
feat: enable marketing site feature in CMS and LMS configurations
1 parent 06d0bee commit b20277b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

configuration_files/cms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ FEATURES:
315315
ENABLE_EXPORT_GIT: false
316316
ENABLE_GRADE_DOWNLOADS: true
317317
ENABLE_LTI_PROVIDER: false
318-
ENABLE_MKTG_SITE: false
318+
ENABLE_MKTG_SITE: true
319319
ENABLE_MOBILE_REST_API: false
320320
ENABLE_OAUTH2_PROVIDER: false
321321
ENABLE_PUBLISHER: false

configuration_files/lms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ FEATURES:
346346
ENABLE_EXPORT_GIT: false
347347
ENABLE_GRADE_DOWNLOADS: true
348348
ENABLE_LTI_PROVIDER: false
349-
ENABLE_MKTG_SITE: false
349+
ENABLE_MKTG_SITE: true
350350
ENABLE_MOBILE_REST_API: false
351351
ENABLE_OAUTH2_PROVIDER: false
352352
ENABLE_PUBLISHER: false

py_configuration_files/lms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def should_show_debug_toolbar(request): # lint-amnesty, pylint: disable=missing
424424
'ENABLE_ENTERPRISE_INTEGRATION': True,
425425
})
426426

427-
ENABLE_MKTG_SITE = os.environ.get('ENABLE_MARKETING_SITE', False)
427+
ENABLE_MKTG_SITE = os.environ.get('ENABLE_MARKETING_SITE', True)
428428
MARKETING_SITE_ROOT = os.environ.get('MARKETING_SITE_ROOT', 'http://localhost:8080')
429429

430430
MKTG_URLS = {

0 commit comments

Comments
 (0)