We have a project that serves as triage for multiple projects. I'll refer to this project as Triage Project, and additional projects as A, B, C, etc. Each project uses a field with a context that is specific to them, which I'll refer to as Context Field. In the Triage Project we have a field that contains all values across all projects of the Context Field.
We have an additional field, which I'll refer to as the Team Field. We want to set values of the Context Field based on the value of the Team field. That's easy and doable, however for future-proofing we would like to reduce the tech debt on the behavior if possible.
Ideally, we would be able to collect those entries based off of the value of any given project, which we would map to the Team Field. For example, we want to be able to check what values are appropriate in the Context Field in project A, collect those entries, and only show them values appropriate for Project A as defined in the field context. Is this doable?
I'm referencing the CustomField interface, where I initially thought I could use `customFieldManager.getCustomFieldObjectsByName("ContextField").getreleventConfig(PROJECTKEY?)`
Roughly, something like this for each case:
def fieldConfig = contextFieldOptions.getReleventConfig()
List options = optionsManager.getOptions(fieldConfig)
def projectOptionsList = []
options.each {
projectOptionsList.add(it.toString())
}
Then collect those entries and set the field options. However, I'm realizing that may not be the best course of action or possible.
Is there a decent way to get all field options for a given project context that I'm missing?
You need an issue or issue context to call "getRelevantConfig" since a config/context in a custom field can be mapped to a projects and/or issue type.
import com.atlassian.jira.issue.context.IssueContextImpl
def context = new IssueContextImpl(project, issueType)
def fieldConfig = contextFieldOptions.getRelevantConfig(context)
You can have a null IssueType
Also, be careful, there is both a getRelevantConfig and a getReleventConfig method (1 letter difference a vs e). You want the one with an a
2022-11-15 21:51:59,964 WARN [runner.ScriptBindingsManager]: CS Context Options: com.atlassian.jira.issue.fields.config.FieldConfigImpl@91e57469
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correct, getRelevantConfig only gets the configuration context object.
You need optionsManager.getOptions(csFieldConfig) to get the list of options.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.