Is it possible to show estimation in one line an tree views of issues list?

subj
0
3 comments
Avatar
Permanently deleted user
Hi Konstantin,
unfortunately it's not possible. I think your request is partly relates to JT-5510

Regtards.
Alexander
0
Avatar
Permanently deleted user
I see. I've  wrote a workflow rules to add tag when estimation changes. Have to update all created tags to be visible for all users, but it works.

rule EstimationTag 
 
when Estimation.changed && issue.Type == {Feature} { 
  for each tag in issue.tags { 
    if (tag.name.endsWith("pt", opts)) { 
      removeTag(tag.name); 
    } 
  } 
  addTag(Estimation + "pt"); 
}



rule keepEstimationTag 
 
when tags.changed { 
  if (tags.removed.isNotEmpty && tags.removed.first.name == Estimation + "pt") { 
    assert false: "You can not remove estimation tag"; 
  } 
}


0
Avatar
Permanently deleted user
Nice wokraround! =)
0

Please sign in to leave a comment.