mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 23:11:08 -05:00
Implement wiki and parks plugin architecture: add initial app configurations, models, and update dependencies
This commit is contained in:
11
wiki/apps.py
Normal file
11
wiki/apps.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
class WikiConfig(AppConfig):
|
||||
name = 'wiki'
|
||||
verbose_name = 'Wiki'
|
||||
|
||||
def ready(self):
|
||||
"""
|
||||
Register signals and perform other initialization
|
||||
"""
|
||||
pass
|
||||
Reference in New Issue
Block a user