django-notifications/notifications/apps.py
Alvaro Mariano 17bdef8f77 Fix #312
2023-05-22 20:57:55 -03:00

14 lines
406 B
Python

''' Django notifications apps file '''
# -*- coding: utf-8 -*-
from django.apps import AppConfig
class Config(AppConfig):
name = "notifications"
default_auto_field = 'django.db.models.AutoField'
def ready(self):
super(Config, self).ready()
# this is for backwards compatibility
import notifications.signals
notifications.notify = notifications.signals.notify