Get Approvers name for a workflow
How can we get approvers name who has approved a workflow step for a workflow who belongs to a publisher group.
How can we get approvers name who has approved a workflow step for a workflow who belongs to a publisher group.
Hi,
you meant last task approved by users? If Yes you can try below code
Note : below code only check last task if want to check all you can loop through by list.
List<HistoryItem> historyList = session.getHistory(item.getWorkflow());
int listSize = historyList.size();
// log.info("listSize = {}", listSize);
HistoryItem lastItem = historyList.get(listSize - 1);
String lastComment = lastItem.getComment();
String lastAction = lastItem.getAction();
String lastUser = lastItem.getUserId();
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.