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.
Hi,
I set a Security Level by default and I want to edit the field and change it to None when reporter is not in group
I'm stucked trying to find my correct my Nunjucks code
I've tried:
{% if not currentUser | isInGroup("xxx-xxx-users") %} {% endif %}
Hi @Carolina SILVA ,
it's actually easier to use the Clear Fields post-function together with Conditional Execution:
{{ not (currentUser | isInGroup("xxx-xxx-users")) }}
However, you also need to make sure the atlassian-addons-project-access project role belongs to all security levels.
thanks DAvid
my mistake I need to focus on who the reporter is to clear or not the Security field
I tried:
{{ not (reporter | isInGroup("xxx-xxx-users")) }}
result is always true when I test my template, which is wrong ;-(
Do you have any clue?
PS I also checked that atlassian-addons-project-access project role belongs to all security levels.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To access the Reporter field, you need
issue.fields.reporter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot David, my tests are correct, I'll continue my change
You saved my night for sure, Go live is tomorrow :-)
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.