Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Html bobswift
<iframe width="560" height="315" src="https://www.youtube.com/embed/ogVg7JjJzAo" frameborder="0" allowfullscreen></iframe>


Code Block
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;
}