feat: add PluginParameterService for dynamic select options retrieval
parent
fe74f24087
commit
706ca20653
@ -0,0 +1,18 @@
|
||||
from core.plugin.entities.parameters import PluginParameterOption
|
||||
|
||||
|
||||
class PluginParameterService:
|
||||
@staticmethod
|
||||
def get_dynamic_select_options(
|
||||
tenant_id: str, plugin_id: str, provider: str, action: str, parameter: str
|
||||
) -> list[PluginParameterOption]:
|
||||
"""
|
||||
Get dynamic select options for a plugin parameter.
|
||||
|
||||
Args:
|
||||
tenant_id: The tenant ID.
|
||||
plugin_id: The plugin ID.
|
||||
provider: The provider name.
|
||||
action: The action name.
|
||||
"""
|
||||
return []
|
||||
Loading…
Reference in New Issue