Things other than highlights may be exported in the future. The storage class is flexible so backends other than s3 may be used in the future. AA-461
19 lines
422 B
Python
19 lines
422 B
Python
"""
|
|
Define the export_course_metadata Django App.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ExportCourseMetadataConfig(AppConfig):
|
|
"""
|
|
App for exporting a subset of course metadata
|
|
"""
|
|
name = 'cms.djangoapps.export_course_metadata'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect signal handler that exports course metadata
|
|
"""
|
|
from . import signals # pylint: disable=unused-import
|