mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-21 02:15:10 -04:00
rename plugins_sys base to config
This commit is contained in:
parent
e8f1264954
commit
2d19317e3f
4 changed files with 6 additions and 6 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue