You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This needs to be added to the example in docs/usage.txt for creating notification events on syncdb:
Add:
from django.db.models.signals import post_syncdb
And then change on line 12:
signals.post_syncdb.connect(create_notice_types, sender=notification)
To:
post_syncdb.connect(create_notice_types, sender=notification)
The text was updated successfully, but these errors were encountered:
This needs to be added to the example in docs/usage.txt for creating notification events on syncdb:
Add:
from django.db.models.signals import post_syncdb
And then change on line 12:
signals.post_syncdb.connect(create_notice_types, sender=notification)
To:
post_syncdb.connect(create_notice_types, sender=notification)
The text was updated successfully, but these errors were encountered: