1
0
Fork 0
mirror of synced 2024-09-19 18:58:41 +12:00
ArchiveBox/archivebox/plugins/system/apps.py

23 lines
557 B
Python
Raw Normal View History

2024-01-24 21:07:07 +13:00
# __package__ = 'archivebox.plugins.system'
from django.apps import AppConfig
class SystemPluginAppConfig(AppConfig):
name = "plugins.system"
# label = "ArchiveBox System"
verbose_name = "Host System Configuration"
2024-01-24 21:07:07 +13:00
default_auto_field = "django.db.models.AutoField"
def ready(self):
print('plugins.system.apps.SystemPluginConfig.ready')
from django.conf import settings
from plugins.defaults.settings import register_plugin_settings
2024-01-24 21:07:07 +13:00
register_plugin_settings(settings, name=self.name)