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.
14 lines
265 B
Python
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'
|