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:
@ -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"
|
||||
|
Reference in New Issue
Block a user