2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

add setting for reload

This commit is contained in:
Matthias
2022-03-16 14:47:27 +01:00
parent 51860a4e7b
commit 8f10ef817c
2 changed files with 11 additions and 2 deletions

View File

@ -1002,6 +1002,13 @@ class InvenTreeSetting(BaseInvenTreeSetting):
'validator': bool,
},
'PLUGIN_ON_STARTUP': {
'name': _('Check plugins on startup'),
'description': _('Check that all plugins are installed on startup - enable in container enviroments'),
'default': False,
'validator': bool,
'requires_restart': True,
},
# Settings for plugin mixin features
'ENABLE_PLUGINS_URL': {
'name': _('Enable URL integration'),