- Creates a new app under cms - Sends emails asynchronously on completion of any top-level job - Moves old user task related cms tests to cms_user_tasks
20 lines
398 B
Python
20 lines
398 B
Python
"""
|
|
CMS user tasks application configuration
|
|
Signal handlers are connected here.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CmsUserTasksConfig(AppConfig):
|
|
"""
|
|
Application Configuration for cms_user_tasks.
|
|
"""
|
|
name = u'cms_user_tasks'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect signal handlers.
|
|
"""
|
|
from . import signals # pylint: disable=unused-variable
|