2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +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

@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
"""sample implementation for ActionMixin"""
from plugin import IntegrationPluginBase
from plugin import InvenTreePlugin
from plugin.mixins import ActionMixin
class SimpleActionPlugin(ActionMixin, IntegrationPluginBase):
class SimpleActionPlugin(ActionMixin, InvenTreePlugin):
"""
An EXTREMELY simple action plugin which demonstrates
the capability of the ActionMixin class