Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,602
Community Members
 
Community Events
185
Community Groups

How to (using ScriptRunner/Groovy) get list of a) Scripted Listeners and/or b) Scripted PostFunctins

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....

1 answer

1 accepted

0 votes
Answer accepted
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 15, 2019

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:

  • com.onresolve.jira.groovy.groovyrunner:functions
  • com.onresolve.jira.groovy.groovyrunner:escalationservice
  • com.onresolve.jira.groovy.groovyrunner:customfields
  • com.onresolve.jira.groovy.groovyrunner:rest-endpoints
  • com.onresolve.scriptrunner.assets.jsd-canned-comments

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events