Source code for notifications.app

from django.apps import AppConfig


[docs]class NotificationsConfig(AppConfig): """Configuration class for :mod:`notifications` module""" name = 'notifications' verbose_name = "Уведомления"
[docs] def ready(self): """Connect :mod:`notifications.signals`""" import notifications.signals