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

add navigation setting

This commit is contained in:
Matthias
2021-10-16 00:32:48 +02:00
parent 32122102e6
commit 41ce66df6e
3 changed files with 17 additions and 0 deletions

View File

@ -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,
}