rename plugins_sys base to config

This commit is contained in:
Nick Sweeting 2024-09-24 02:12:30 -07:00
parent e8f1264954
commit 2d19317e3f
No known key found for this signature in database
4 changed files with 6 additions and 6 deletions

View file

@ -123,9 +123,9 @@ class SearchBackendConfig(BaseConfigSet):
SEARCH_BACKEND_CONFIG = SearchBackendConfig()
class CorePlugin(BasePlugin):
app_label: str = 'core'
verbose_name: str = 'Core'
class ConfigPlugin(BasePlugin):
app_label: str = 'config'
verbose_name: str = 'Configuration'
hooks: List[InstanceOf[BaseHook]] = [
SHELL_CONFIG,
@ -137,6 +137,6 @@ class CorePlugin(BasePlugin):
]
PLUGIN = CorePlugin()
PLUGIN = ConfigPlugin()
PLUGIN.register(settings)
DJANGO_APP = PLUGIN.AppConfig