From 5058e24c993db205db1fd97e558d441f753a19b2 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 15 May 2024 09:12:29 +1000 Subject: [PATCH] Adds MIN_API_VERSION to InvenTreePlugin class --- inventree/plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/inventree/plugin.py b/inventree/plugin.py index 5778c64..4d692ee 100644 --- a/inventree/plugin.py +++ b/inventree/plugin.py @@ -7,6 +7,7 @@ class InvenTreePlugin(inventree.base.MetadataMixin, inventree.base.InventreeObje """Represents a PluginConfig instance on the InvenTree server.""" URL = 'plugins' + MIN_API_VERSION = 197 @classmethod def getPkField(cls):