Hi all,
i hope there is a easy solution fo my problem.
I want to add my client for one (of many projects) in my jira cloud (next gen project). When i add my client, he see all my projects! What´s the problem?
As you've already worked out, you'll need to find or write a plugin to do this. You'll need to choose between post-function and listener as well.
Post-functions run only on transitions, are relatively easy to write, and can be placed in a way such that they only ever run when they are needed. Listeners are more flexible as they can catch any event. (Your comment about "adding an event" needs a bit more info - events are already fired, and it's one event per thing-that-happens, so you probably don't need to worry about adding another one - you've already got "create issue" events happening and you can't add a second event)
On the back of all of that, I'd seriously recommend a look at the script runner plugin. It can bypass the need for another plugin in both cases above and can be a lot more flexible than hard-coding a plugin...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.