15 lines
338 B
Python
15 lines
338 B
Python
"""
|
|
complaints app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ComplaintsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.complaints'
|
|
verbose_name = 'Complaints'
|
|
|
|
def ready(self):
|
|
"""Import signals when app is ready"""
|
|
import apps.complaints.signals
|