https://docs.djangoproject.com/en/2.2/ref/applications/#django.apps.AppConfig.name These packages were mis-named after the sys.path fixes.
18 lines
380 B
Python
18 lines
380 B
Python
"""
|
|
Django AppConfig module for the Gating app
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class GatingConfig(AppConfig):
|
|
"""
|
|
Django AppConfig class for the gating app
|
|
"""
|
|
name = 'lms.djangoapps.gating'
|
|
|
|
def ready(self):
|
|
# Import signals to wire up the signal handlers contained within
|
|
from gating import signals # pylint: disable=unused-import
|