mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 01:31:12 -05:00
18 lines
394 B
Python
18 lines
394 B
Python
"""
|
|
Users app configuration.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.users'
|
|
verbose_name = 'Users'
|
|
|
|
def ready(self):
|
|
"""Import signal handlers when app is ready"""
|
|
# Import signals here to avoid circular imports
|
|
# import apps.users.signals
|
|
pass
|