When a Story is linked to a Product Feature, I want all of its common fields to be copied over and they also need to be editable.
I've been looking into doing a Validator script that's sort of hybrid of the Condition script, but I haven't had any luck
string[] subtasks = subtasks(key);
string errorMsg = "All sub-tasks must be closed before a parent
can be closed";
for(string subtask in subtasks) {
if(%subtask%.status != "Closed") {
return false, summary, errorMsg;
}
}