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

Compare with Current View Page History

« Previous Version 5 Next »

Use case

Return the display name of the latest user who changed the assignee.

Expression

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

ExpressionDescription
issue.changelogs.filter(changelog => changelog.items.some(item => item.fieldId == 'assignee')).map(changelog => changelog.author.displayName)[0]

This example returns the display name of the latest user who changed the assignee.