From dfe10a417b0d59cfb2998ef742575b13f2a222d0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 17 Oct 2021 04:24:04 +0200 Subject: [PATCH] fix app settings --- InvenTree/plugin/apps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index b620b91b80..3144a7bfe2 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -20,6 +20,7 @@ class PluginConfig(AppConfig): plugin_setting = plugin.settingspatterns settings.INTEGRATION_PLUGIN_SETTING[slug] = plugin_setting settings.INTEGRATION_PLUGIN_SETTINGS.update(plugin_setting) + InvenTreeSetting.GLOBAL_SETTINGS.update(plugin_setting) # if plugin apps are enabled if (not settings.INTEGRATION_APPS_LOADED) and InvenTreeSetting.get_setting('ENABLE_PLUGINS_APP'):