Hi Team,
I have one question- If a tester in my team has deleted some comments and as a admin I want to see what is deleted so is there any option to see it?
Thanks
This is how it works for me now:
ResponseEntity<String> response = template.getForEntity(baseUrl + JIRA_REST_BASE_PATH + "issuetype",
String.class);
Collection<IssueType> result = JsonParseUtil.parseJsonArray(new JSONArray(response.getBody()), new IssueTypeJsonParser());
for (IssueType type : result) {
LOG.info("Issuetype name = " + type.getName());
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.