mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 09:31:09 -05:00
14 lines
360 B
Python
14 lines
360 B
Python
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
|