mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 06:51:13 -05:00
Refactor code structure and remove redundant changes
This commit is contained in:
17
django-backend/apps/users/apps.py
Normal file
17
django-backend/apps/users/apps.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
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
|
||||
Reference in New Issue
Block a user