https://docs.djangoproject.com/en/2.2/ref/applications/#django.apps.AppConfig.name These packages were mis-named after the sys.path fixes.
21 lines
382 B
Python
21 lines
382 B
Python
"""
|
|
Survey Application Configuration
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class SurveyConfig(AppConfig):
|
|
"""
|
|
Application Configuration for survey.
|
|
"""
|
|
name = 'lms.djangoapps.survey'
|
|
verbose_name = 'Student Surveys'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect signal handlers.
|
|
"""
|
|
from . import signals # pylint: disable=unused-import
|