Files
edx-platform/cms/djangoapps/export_course_metadata/apps.py
Matthew Piatetsky 8d1d7b2222 feat: Export highlights to s3 for use by braze
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
2021-03-04 15:57:30 -05:00

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