1
0
Fork 0
mirror of synced 2024-08-24 14:31:30 +12:00
ArchiveBox/archivebox/plugins/defaults/settings.py

12 lines
320 B
Python
Raw Normal View History

2024-01-24 21:07:07 +13:00
from django.conf import settings
def register_plugin_settings(settings=settings, name='defaults'):
settings.STATICFILES_DIRS += [
str(Path(PACKAGE_DIR) / f'plugins/{name}/static'),
]
settings.TEMPLATE_DIRS += [
str(Path(PACKAGE_DIR) / f'plugins/{name}/templates'),
]
print('REGISTERED PLUGIN SETTINGS', name)