Files
edx-platform/openedx/core/djangoapps/notifications/apps.py
2024-05-09 15:16:59 +05:00

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