Hi,
I am developing a Jira chart plugin, I am currenttly stuck at getting the story points estimation of a given Issue.
To be more explicit, I have a list of Issues and I want see the story points estimation for each of them. There is a function Issue.getEstimate() but it returns me null even for the estimated Issues. Can someone help me please?
I am using Java API.
Thank you
Seems that you will have to retrieve this info using customField.getValue(issue).
In groovy you can use
ComponentAccessor.getCustomFieldManager().getCustomFieldObjectsByName("Story Points").first().getValue(issue)
but you can use customfield id if you have many fields named Story Points.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.