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

Compare with Current View Page History

« Previous Version 7 Current »

Use case

Return the number of users who have added attachments to the issue.

Expression

Create and configure a Smart field using this expression in Jira expression mode:

ExpressionDescription
issue.attachments.map(attachment => attachment.author.accountId).reduce((a, b) => a.includes(b) ? a : a.concat(b), []).length

This example returns the number of users who have added attachments to the issue.