When integrated with Jira, the JiraClient.toJiraIssue parses out the json response. It only parses out the inwardKey and outwardKey. Is that possible that also parse out the Summary for each inwardKey and outwardKey, so that the key and summary can be displayed in changelog?
the respond from jira is like:
"fields": {
"summary": "Summary of this Issue",
"issuelinks": [
"outwardIssue": {
"key": "IssueKey-0000",
"fields": {
"summary": "Summary of outward linked issue",
...
Appreciate if it can happen.
Hu