- Change retire mailings endpoint to use new USER_RETIRE_THIRD_PARTY_MAILINGS signal, currently only used by Sailthru retirement - Move USER_RETIRE_MAILINGS signal firing to the LMS misc endpoint - Remove duplicate clearing of UserOrgTags - Remove LMS imports in openedx/core and update usage to use new USER_RETIRE_LMS_CRITICAL and USER_RETIRE_LMS_MISC signals - Add testing for new signal handlers and app registration for the LMS survey app
20 lines
368 B
Python
20 lines
368 B
Python
"""
|
|
Survey Application Configuration
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class SurveyConfig(AppConfig):
|
|
"""
|
|
Application Configuration for survey.
|
|
"""
|
|
name = 'survey'
|
|
verbose_name = 'Student Surveys'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect signal handlers.
|
|
"""
|
|
from . import signals # pylint: disable=unused-variable
|