mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 10:35:15 +08:00
31 lines
614 B
Python
31 lines
614 B
Python
from app.workflow.actions import BaseAction
|
|
from app.schemas import ActionContext
|
|
|
|
|
|
class NoteAction(BaseAction):
|
|
"""
|
|
备注
|
|
"""
|
|
|
|
@classmethod
|
|
@property
|
|
def name(cls) -> str: # noqa
|
|
return "备注"
|
|
|
|
@classmethod
|
|
@property
|
|
def description(cls) -> str: # noqa
|
|
return "给工作流添加备注"
|
|
|
|
@classmethod
|
|
@property
|
|
def data(cls) -> dict: # noqa
|
|
return {}
|
|
|
|
@property
|
|
def success(self) -> bool:
|
|
return True
|
|
|
|
def execute(self, workflow_id: int, params: dict, context: ActionContext) -> ActionContext:
|
|
return context
|