Versions Compared

Key

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

...

  • If recipient is an email user, restricted (group and role visibility) and JSD private comments are excluded
  • If recipient is a JIRA user, JSD private comments are included
  • If recipient is a JIRA user, restricted comments are excluded according to the comment's comments role or group visibility.

...

And finally, if you want to do your own security (not recommencedrecommended)

Code Block
## Iterating over all the comments (security warning!)
#foreach( $comment in $context.issue.fields.comment.comments)
  $jemhUtils.wikiToHtml($comment.body.textValue())
  $jemhUtils.setCommentRendered()
#end

...