Files
edx-platform/lms/djangoapps/survey/apps.py
bmedx f3a9e508a0 Refactor retirement endpoints to isolate Sailthru and respect boundaries
- 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
2018-06-27 10:23:49 -04:00

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