在我们运行 4.2.4 版之前,我们今天将我们的 jira 升级到了 5.0.5 版。在那个版本中,我们制作了一个自定义发布说明模板,该模板还将显示对某个问题的所有评论。为此,我们必须能够获得一个CommentManager
对象。我们这样做是这样的:
#foreach ($issue in $issueType.issues)
#if($issueType.issues.size() > 0)
#set ($comments = $action.ComponentManager.CommentManager.getComments($issue))
#if ($comments)
#foreach ($comment in $comments)
...
这在 JIRA 4.2.4 中运行良好,但在 jira 5.0.5 中不再运行,有谁知道在 JIRA 5.0.5 中创建自定义发行说明模板或如何获取 CommentManager 时如何再次获取 CommentManager 对象以其他方式反对,而不使用$action
例如?