Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

作用

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

示例

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


判断问题类型

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

if(issue.issueType?.name == 'Story'){
    return false;
}else{
    return true;
}
  • No labels