mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
25 lines
540 B
Python
25 lines
540 B
Python
# -*- coding: utf-8 -*-
|
|
from plugins.action.action import ActionPlugin
|
|
|
|
|
|
class SimpleActionPlugin(ActionPlugin):
|
|
"""
|
|
An EXTREMELY simple action plugin which demonstrates
|
|
the capability of the ActionPlugin class
|
|
"""
|
|
|
|
PLUGIN_NAME = "SimpleActionPlugin"
|
|
ACTION_NAME = "simple"
|
|
|
|
def perform_action(self):
|
|
print("Action plugin in action!")
|
|
|
|
def get_info(self):
|
|
return {
|
|
"user": self.user.username,
|
|
"hello": "world",
|
|
}
|
|
|
|
def get_result(self):
|
|
return True
|