You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello Community...
I can get a nice list of customFields, including scripted customFields using Scriptrunner.
But I just can't find a way to generate a similar list of e.g. Scripted Listeners and/or Scripted PostFunctions.
Yes - I know i can see it under gear==>add-ons==>"Script Listeners" etc...but i need to make the list available to auditors, using Scriptrunner.
Any ideas?
Reward: Eternal gratitude....
I don't know if there is an api way to get this. I'm sure there is. But I wouldn't know where to start.
But failing that, you can get it directly from the properties system
import com.atlassian.jira.component.ComponentAccessor
import groovy.json.JsonSlurper
def props = ComponentAccessor.getApplicationProperties()
def listeners = new JsonSlurper().parseText(props.getText('com.onresolve.jira.groovy.groovyrunner:groovyrunner'))
listeners*.FIELD_LISTENER_NOTES
Other property keys of interest for Scriptrunner:
Behaviours are also stored in application properties as Behaviour_n and Mappings are under BehaviourMap.
Script Fragments are stored in an AO table: AO_4B00E6_STASH_SETTINGS
Peter-Dave
This is exactly the information, I was looking for.
Thanks :)
/Søren
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.