* feat: added enrollment API for notification config * feat: added apps.py in notifications * feat: added waffle flag for notification app * feat: added proper docs for the API
21 lines
387 B
Python
21 lines
387 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
|