Page tree

Versions Compared

Key

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

作用

用于在Hihaviour中的各类condition中进行条件的编写,用于在Hihaviour中的各类condition中进行条件的编写,比如克隆限制,子任务创建,工时填写,webpanle及菜单控制等

示例

控制Story的问题不能进行复制


判断问题类型

如果问题类型为Story,条件结果为true

Code Block
languagejava
linenumberstrue
if(issue.issueType?.name == 'Story'){
    return false;
}else{
    return true;
}