Page tree

Versions Compared

Key

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

在创建issue时要对附件进行限制可以使用以下代码

8.1.0 版本及以上

Code Block
import com.opensymphony.workflow.InvalidInputException

if(issue.attachmentsAddedInTransition.size() == 0) {
    throw new InvalidInputException("attachment", "Attachment is required")
}

...