django-notifications/notifications/apps.py

12 lines
287 B
Python
Raw Normal View History

2015-12-09 13:30:34 +00:00
from django.apps import AppConfig
2015-12-11 13:32:20 +00:00
2015-12-09 13:30:34 +00:00
class Config(AppConfig):
name = "notifications"
def ready(self):
super(Config, self).ready()
# this is for backwards compability
2015-12-11 13:32:20 +00:00
import notifications.signals
notifications.notify = notifications.signals.notify