I'm using script runner to hopefully do this. Can someone help? I'm not very good at scripting and have been using other add-ons to fill this requirement. Had to uninstall the add-on because it was causing some errors which stopped a very critical process that we had.
Used JMCF instead.
Hello Marc,
You can either
def changes = changeHistoryManager.getChangeHistoriesForUser(issue, user)
def lastResolvedUser
changes.reverse().each{
it.changeItems.each{
if (it.containsKey("field") && it.getString("field").equals("resolution") {
if (it.get("newfield") != null && it.get("oldfield") == null) {
lastResolvedUser = it.authorObject
}
}
}
}
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.