You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Dear community,
I need to send a custom email in one transition. I want to use nunjucks to put some variables into that email.
One of the variables is a custom field, which provides an objecttype out of Assets.
I can use this:
{{ issue.fields.customfield_10092 | first | dump(2) }}
which will result in
{ "workspaceId": "510f14bb-3b12-4179-b1a9-9293d1aa981e", "id": "510f14bb-3b12-4179-b1a9-9293d1aa981e:14991", "objectId": "14991" }
Within the email, I would like to have the name of that object: "CLL - Linde F".
@David Fischer _Appfire_: How do I access the name of the Assets object in the custom field? (Sorry to address you directly: I am using the JMWE app...)
Thank you very much,
Chris
Hi @schneich ,
you can use the insightFieldValue Nunjucks filter for that. You can try this to figure out how to retrieve the data you want:
{{ issue | insightFieldValue("customfield_10092") | dump(2) }}
thank you very much for your quick response and the link to the custom filters.
This worked fine:
{ issue | insightFieldValue("customfield_10092") | first | field("label") }}
best regards,
Chris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.