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.
Hi all, perhaps you can advise me on whether this is a good practice and, if so, how to achieve it:
+ Rather than having various bits of logic spread out in listeners, post-functions etc, keep all the logic within endpoints
+ Then, in the listener or post-function script, call the endpoint
= More easily manage code since all logic is held in endpoints, and the listeners/post-functions just reference the endpoints.
I'd like to prototype this, but I'm struggling with actually calling an endpoint I've created from within a post-function script. I've searched on the community/google and am getting some mixed signals - anyone done this before?
The endpoint I've setup is a simple issue redirect - given an issue key it will navigate to that issue in the browser:
<baseUrl>/rest/scriptrunner/latest/custom/issueRedirect?issueKey="ISSUE-01"
Can anyone provide any sample code for calling this within another script? Thanks!