22 lines
420 B
Python
22 lines
420 B
Python
"""
|
|
Config for notifications app
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
"""
|
|
Config for notifications app
|
|
"""
|
|
name = 'openedx.core.djangoapps.notifications'
|
|
verbose_name = 'Notifications'
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signals
|
|
"""
|
|
# pylint: disable=unused-import
|
|
from . import handlers
|
|
from .email import tasks
|