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

Compare with Current View Page History

« Previous Version 3 Next »

Use case

Return the display name of the user who performed the last status change.

Expression

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

ExpressionDescription
issue.changelogs.filter(c=>c.items.some(i=>i.field=="status"))[0]?.author.displayName

This example returns the display name of the user who performed the last status change.