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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.