Enable the journal app in LMS. Add support to display Journals on index and courseware pages and dashboard.
10 lines
265 B
Python
10 lines
265 B
Python
'''Test Settings for Journals'''
|
|
|
|
|
|
def plugin_settings(settings): # pylint ignore:Unused argument
|
|
"""
|
|
Test settings for Journals
|
|
"""
|
|
settings.COURSE_CATALOG_URL_BASE = 'https://catalog.example.com'
|
|
settings.FEATURES['JOURNALS_ENABLED'] = False
|