Hi,
Eazybi immporting fails, what could be the reason.
var allAssignees = [];
// Collect previous assignees from changelogif (issue.changelog && issue.changelog.histories) {issue.changelog.histories.forEach(function(history) {if (history.items) {history.items.forEach(function(change) {if (change.field === "assignee" && change.fromString) {if (allAssignees.indexOf(change.fromString) === -1) {allAssignees.push(change.fromString);}}});}});}
// Add current assignee if not already includedif (issue.fields.assignee && issue.fields.assignee.displayName) {var current = issue.fields.assignee.displayName;if (allAssignees.indexOf(current) === -1) {allAssignees.push(current);}}
// Reverse so current is firstallAssignees.reverse();
// Return array for multi-value dimensionreturn allAssignees.length > 0 ? allAssignees : null;
@Naveen Penta ,
Could be plenty of things, do you get any specific error messages?
Hello @Naveen PentaThanks for posting your question!
I may have seen the error on our end and have sent an email to you directly. If you have not received the email from support@eazybi.com on the email you registered your Atlassian site, please share more details about what you are trying to define in the import options and what your reporting needs are.
Best wishes,Elita from support@eazybi.com
It looks like you're new here. Sign in or register to get started.