I want to retrieve the log from an Issue from the "All" tab.
I know it is possible to do that by combining the "Comments" and "History" tab by using:
Issue issueHistory = restClient.getIssueClient().getIssue(issue.getKey(),Arrays.asList(IssueRestClient.Expandos.CHANGELOG)).claim();
and then for Comments:
issueHistory.getComments().iterator();
and for History:
issueHistory.getChangelog().iterator();
Is this possible though to get both once and ordered by date?
No, as they're totally different feeds of information!
Thanks for the Info! I'll just merge them in java.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.