Source code for notifications.apps

__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"


from django.apps import AppConfig


[docs]class NotificationsConfig(AppConfig): name = 'notifications'
[docs] def ready(self): super().ready() import notifications.signals notifications.notify = notifications.signals.notify