Hi,
I am trying to add a group as participants to a ticket using your plugin. I have read through issue #520 (https://bitbucket.org/fcarmario/jira-workflow-toolbox/issues/520/adding-participants-from-group) and have tried to make this work for the last few days. Can you please break this down a bit more?
I have chose the "Copy a parsed text to a field" post function in my workflow. "Request Participants" field in the Target field.
The text I am using is: ""+ " + toString(usersInGroup(%{mrtech})" Am I missing another piece of this configuration? I am only seeing individual users populate under the "Request participants:" field. The group I'd like to test this with is called mrtech.
My Post function summary reads as this: The following text parsed in advanced mode will be copied to Request participants: ""+ " + toString(usersInGroup(%{mrtech})" This feature will be run as user in field Current user.
I am also attaching a screenshot of what my post function configuration looks like. Please let me know if you need anymore information. Thank you!
Hi Katelyn,
You should "Copy a parsed text to a field" post-function use any of the following 2 equivalent configurations:
1) Using directly the name of the group with operator
+:+ mrtech2) Obtaining a comma separated list with usernames of members of group 'mrtech':
"+ " + toString(usersInGroup("mrtech"))