It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I have a REST API module working with customfield options. When calling the API, I want to delete the option when it is not used (== used in 0 issues) and disable if it is used in at least one issue. How can I determine whether the option is selected in at least one issue?
I use the following code to get the options:
List<FieldConfigScheme> schemes = customField.getConfigurationSchemes(); if (schemes != null && !schemes.isEmpty()) { FieldConfigScheme sc = schemes.get(0); Map configs = sc.getConfigsByConfig(); if (configs != null && !configs.isEmpty()) { FieldConfig config = (FieldConfig) configs.keySet().iterator().next(); Options options = optionsManager.getOptions(config); }
I think you have to search for all issues with this option selected through a JQL search.
Henning
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It started as any story starts, on a normal, rainy day. Admin meets App, and her name was Klok2, and like any first relationship we were both trying to make it work but neither one knew what...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.