mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-04 03:24:52 +00:00
10 lines
No EOL
286 B
Python
10 lines
No EOL
286 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 |