SciPost Code Repository

Skip to content
Snippets Groups Projects
apps.py 244 B
Newer Older
Jorran de Wit's avatar
Jorran de Wit committed
from django.apps import AppConfig


class NotificationsConfig(AppConfig):
    name = 'notifications'

    def ready(self):
        super().ready()
        import notifications.signals
        notifications.notify = notifications.signals.notify