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

rename IntegrationPluginBase to InvenTreePlugin

This commit is contained in:
Matthias
2022-05-11 14:28:26 +02:00
parent 01e8b5dce3
commit 1571b99ed2
20 changed files with 62 additions and 62 deletions

View File

@ -142,11 +142,11 @@ class MixinBase:
return mixins
class IntegrationPluginBase(MixinBase, InvenTreePluginBase):
class InvenTreePlugin(MixinBase, InvenTreePluginBase):
"""
The IntegrationPluginBase class is used to integrate with 3rd party software
The InvenTreePlugin class is used to integrate with 3rd party software
DO NOT USE THIS DIRECTLY, USE plugin.IntegrationPluginBase
DO NOT USE THIS DIRECTLY, USE plugin.InvenTreePlugin
"""
AUTHOR = None