Hi
I want to adjust manager name of issue according security level name.
axample:
I select security level 1 the user1 selected as manager issue automatically and secuitylevel2 with user2 and...
is this possible?
thanks
Hello,
You could do it with the Power Scripts add-on:
You could write a listener for the Issue Updated event with a code like this:
if (securityLevel == "level1") {
assignee = user1;
}
if (securityLevel == "level2") {
assignee = user2;
}
You can read more about listeners here:
https://confluence.cprime.io/pages/viewpage.action?pageId=6558205
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.