update
This commit is contained in:
15
reports/apps.py
Normal file
15
reports/apps.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
App configuration for reports app.
|
||||
"""
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ReportsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'reports'
|
||||
|
||||
def ready(self):
|
||||
"""Set up signals and configure email settings."""
|
||||
# Note: Email settings are loaded dynamically via the email backend
|
||||
# No need to access database here to avoid warnings
|
||||
pass
|
||||
Reference in New Issue
Block a user