diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index 2f32831c8e..848e4e9b0a 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -855,6 +855,12 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'choices': settings_group_options }, + 'ENABLE_PLUGINS_NAVIGATION': { + 'name': _('Enable navigation integration'), + 'description': _('Enable plugins to integrate into navigation'), + 'default': False, + 'validator': bool, + }, **settings.INTEGRATION_PLUGIN_SETTINGS, } diff --git a/InvenTree/templates/InvenTree/settings/plugin.html b/InvenTree/templates/InvenTree/settings/plugin.html index c517b72917..8b4f03bbea 100644 --- a/InvenTree/templates/InvenTree/settings/plugin.html +++ b/InvenTree/templates/InvenTree/settings/plugin.html @@ -12,6 +12,14 @@ {% block content %} + +