mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-26 18:00:24 +00:00
11 lines
287 B
Python
11 lines
287 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class Config(AppConfig):
|
|
name = "notifications"
|
|
|
|
def ready(self):
|
|
super(Config, self).ready()
|
|
# this is for backwards compability
|
|
import notifications.signals
|
|
notifications.notify = notifications.signals.notify
|