|
That would work well, although another thought just hit me - the link list is just another RSS feed.
So you could just include a <linked-issues-feed>.../someurl</linked-issues-feed> ( or suitable element name ). Just thinking about that, the generated RSS for the links should include a tag that says what the link type is. So is slightly different to the standard RSS feed...
Thoughts? In HTML it could be <a href="..." rel="subtask"/>. Whether a full URL or issue key is returned depends on what people want to use it for.
This is implemented in JIRA 3.7. The XML looks like this:
<parent id="$issue.parent.id">$issue.parent.key</parent>
Cheers, |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<links>
<link type="subtask" name="
JRA-123"/><link type="subtask" name="
JRA-124"/><link type="Duplicates" name="TST-123"/>
<link type="Relates to" name="TST-456"/>
</links>
Or what info do you need?