Files
edx-platform/cms/djangoapps/import_from_modulestore/apps.py
Ivan Niedielnitsev 505b4f466c feat: Models for import_from_modulestore (#36515)
A new application has been created, described in this ADR:
https://github.com/openedx/edx-platform/pull/36545

have been created, as well as related models for mapping original content and
new content created during the import process. Python and Django APIs, as well
as a Django admin interface, will soon follow.
2025-04-17 19:03:46 +00:00

14 lines
265 B
Python

"""
App for importing from the modulestore tools.
"""
from django.apps import AppConfig
class ImportFromModulestoreConfig(AppConfig):
"""
App for importing legacy content from the modulestore.
"""
name = 'cms.djangoapps.import_from_modulestore'