You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!issueLink.issueLinkType.isSubTaskLinkType()) { return 0L }
Issue issue = issueLink.getDestinationObject()
return issue.getCustomFieldValue(expectedEstimateField) as Long ?: issue.getOriginalEstimate() //sum cf values of Original Estimate values if cf value is empty
} ?: ([] as List<Long>)
Long totalDuration = durations.inject(0L) { a, b -> a + b } as Long