2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

remove legacy action

This commit is contained in:
Matthias
2022-05-11 14:20:05 +02:00
parent 19cfa540d9
commit 05839ca94c
4 changed files with 17 additions and 40 deletions

View File

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