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

Merge pull request #2748 from matmair/matmair/issue2524

Run plugin install on startup
This commit is contained in:
Oliver
2022-03-21 07:15:37 +11:00
committed by GitHub
5 changed files with 41 additions and 2 deletions

View File

@ -1007,6 +1007,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'),