mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 11:31:07 -05:00
12 lines
382 B
Python
12 lines
382 B
Python
from django.apps import AppConfig
|
|
|
|
class HistoryConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'history'
|
|
verbose_name = 'History Tracking'
|
|
|
|
def ready(self):
|
|
"""Initialize app and signal handlers"""
|
|
from django.dispatch import Signal
|
|
# Create a signal for history updates
|
|
self.history_updated = Signal() |