As a Jira Admin
I want to reduce the list of Resolutions seen by a Project
So that users are not overloaded with unrelated Resolutions
This follows the server side Behaviour as listed here: https://docs.adaptavist.com/sr4js/6.41.0/features/behaviours/behaviours-examples/restricting-priority-and-resolution
Example server side code:
if ((getActionName() == “Jump to Close”) || (getActionName() == “Review Passed”)) def constantsManager = ComponentAccessor.getConstantsManager()
def allowedResolutions = constantsManager.getResolutions().findAll it.name in [“Complete”, “Won’t Do”, “Duplicate”, “Not Required”]
}
getFieldById(RESOLUTION).setFieldOptions(allowedResolutions)
Hi @Paul.Webber! Thanks for your detailed use case. This is certainly on our radar and we’re working with Atlassian to get this capability supported. We’ve been referring to it as “Manage field options” so keep an eye for that term as we continue to post updates on new capabilities.