13 lines
306 B
Python
13 lines
306 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SocialConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.social'
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signals when app is ready to ensure they are registered.
|
|
"""
|
|
import apps.social.signals
|