PonyConf/cfp/apps.py

11 lines
269 B
Python
Raw Normal View History

2017-05-29 20:48:49 +00:00
from django.apps import AppConfig
from django.db.models.signals import post_migrate
class CFPConfig(AppConfig):
name = 'cfp'
def ready(self):
2017-05-30 20:27:45 +00:00
import cfp.signals # noqa
post_migrate.connect(cfp.signals.call_first_site_post_save, sender=self)