mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-19 20:51:00 +00:00
14 lines
350 B
Python
14 lines
350 B
Python
|
|
''' Django notifications apps file '''
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
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
|