Files
edx-platform/openedx/core/djangoapps/notifications/apps.py
Ahtisham Shahid 118ea3a024 feat: added enrollment api for notification config (#32162)
* 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
2023-05-09 11:51:31 +05:00

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