I want to do a validation that only a person who is a component lead can do a transition when an issue has a component with that lead. Like an approval for that particular piece of work (which the component is). Is that possible?
Hi Marteen
You can do this using the Power Scripts add-on.
There is a video tutorial walking you through in detail here.
Here is the code:
string [] comp = component;
boolean pass = false;
string errorMsg = "You can only have a single component assigned to this issue";
if(arraySize(comp) > 1) {
return false, "error", errorMsg;
}
errorMsg = "Only the component lead can perform this action";
for(string c in comp) {
if(getProjectComponentLead(project, c) == currentUser()) {
pass = true;
}
}
if(!pass) {
return false, "error", errorMsg;
}
Hi marteen,
Not possible out of the box, need add-ons or scripts.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please can you tell which ones, we have some addon's like JSU.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.