Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If operated on an issue with the key "QWERY-123" this will be evaluated as

https://my_jira_instance_url/rest/api/2/issue/QWERTY-123/comment


Iterate over arrays

Info
titleRemoving trailing comma in array

example variable result of variable users: [ A, B , C ]

Body:

{{#users}}
"{{.}}"
{{/users}}

{{^users}}
"{{.}}"
{{/users}}

Result:

A,B,C