mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 16:31:08 -05:00
Refactor comments app to use mixins for comment functionality; update admin interfaces and add historical model fixes
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
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"
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'comments'
|
||||
|
||||
def ready(self):
|
||||
"""Set up comment system when the app is ready."""
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user