Hi,
Eazybi immporting fails, what could be the reason.
Could be plenty of things, do you get any specific error messages?
Hello @Naveen Penta
Thanks 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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
var allAssignees = [];
// Collect previous assignees from changelog
if (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 included
if (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 first
allAssignees.reverse();
// Return array for multi-value dimension
return allAssignees.length > 0 ? allAssignees : null;
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.