19 lines
503 B
Python
19 lines
503 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MediaLibraryConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'vbv_lernwelt.media_library'
|
|
|
|
|
|
#
|
|
# default_auto_field = 'django.db.models.BigAutoField'
|
|
# name = 'vbv_lernwelt.learnpath'
|
|
#
|
|
# def ready(self):
|
|
# try:
|
|
# # pylint: disable=unused-import,import-outside-toplevel
|
|
# import vbv_lernwelt.learnpath.signals # noqa F401
|
|
# except ImportError:
|
|
# pass
|