mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 10:51:09 -05:00
10 lines
302 B
Python
10 lines
302 B
Python
from django.apps import AppConfig
|
|
|
|
class HistoryTrackingConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'history_tracking'
|
|
|
|
def ready(self):
|
|
"""Register signals when the app is ready"""
|
|
from . import signals # Import signals to register them
|