mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 14:31:08 -05:00
11 lines
304 B
Python
11 lines
304 B
Python
from django.apps import AppConfig
|
|
from django.db.models.signals import class_prepared, post_init
|
|
|
|
class CommentsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'comments'
|
|
|
|
def ready(self):
|
|
"""Set up comment system when the app is ready."""
|
|
pass
|