mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 18:51:07 -05:00
Implement wiki and parks plugin architecture: add initial app configurations, models, and update dependencies
This commit is contained in:
13
wiki/plugins/parks/apps.py
Normal file
13
wiki/plugins/parks/apps.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
class ParksPluginConfig(AppConfig):
|
||||
name = "wiki.plugins.parks"
|
||||
label = "wiki_parks"
|
||||
verbose_name = "Wiki Parks Plugin"
|
||||
|
||||
def ready(self):
|
||||
"""
|
||||
Register plugin with wiki system when the app is ready.
|
||||
Plugin registration is deferred until wiki core is available.
|
||||
"""
|
||||
pass
|
||||
Reference in New Issue
Block a user