From 2728bfab373549ee746a58b9b3514066a9d86460 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 5 Apr 2022 00:25:39 +0200 Subject: [PATCH] fix: add genericSettingClassMixin back in --- InvenTree/plugin/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 9975015d01..29bea5d02e 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -150,7 +150,7 @@ class PluginSetting(common.models.GenericSettingClassMixin, common.models.BaseIn ) -class NotificationUserSetting(common.models.BaseInvenTreeSetting): +class NotificationUserSetting(common.models.GenericSettingClassMixin, common.models.BaseInvenTreeSetting): """ This model represents notification settings for a user """