Per the documentation, name should be the full python path to the module.

https://docs.djangoproject.com/en/2.2/ref/applications/#django.apps.AppConfig.name

These packages were mis-named after the sys.path fixes.
This commit is contained in:
Calen Pennington
2020-09-29 14:58:06 -04:00
committed by Calen Pennington
parent 9281efc4b9
commit 51c526ea83
4 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ class EmailMarketingConfig(AppConfig):
"""
Configuration class for the email_marketing Django application.
"""
name = 'email_marketing'
name = 'lms.djangoapps.email_marketing'
verbose_name = "Email Marketing"
def ready(self):

View File

@@ -10,7 +10,7 @@ class GatingConfig(AppConfig):
"""
Django AppConfig class for the gating app
"""
name = 'gating'
name = 'lms.djangoapps.gating'
def ready(self):
# Import signals to wire up the signal handlers contained within

View File

@@ -15,7 +15,7 @@ class LMSInitializationConfig(AppConfig):
"""
Application Configuration for lms_initialization.
"""
name = 'lms_initialization'
name = 'lms.djangoapps.lms_initialization'
verbose_name = 'LMS Initialization'
def ready(self):

View File

@@ -10,7 +10,7 @@ class SurveyConfig(AppConfig):
"""
Application Configuration for survey.
"""
name = 'survey'
name = 'lms.djangoapps.survey'
verbose_name = 'Student Surveys'
def ready(self):