I'm trying to make a custom command to clone an issue from one project to another one. To do this I would like the user to specify the new project as an argument to the command:
clone_to ProjectB
However there doesn't appear to be any way to get the argument string "ProjectB" in the actionFunction, like in the ctx argument:
https://www.jetbrains.com/help/youtrack/standalone/v1-entities.html#actionFunction
And there doesn't seem to be a way to define a command with an argument:
https://www.jetbrains.com/help/youtrack/incloud/rule-specific-properties.html#action-rule-properties https://www.jetbrains.com/help/youtrack/incloud/v1-Issue.html#action
Any ideas?