There are too many users with incorrect access in our Jira project. The developers who are working in our environment should be assigned the developer role. That role should only have the following access;
1. add comments to story level
2. add subtasks to a story
3. manage status on subtasks
How can we update with Subtask create permission to the Project Developer in Jira?
1. Create a scripted field which would return a link depending on your meetingId value.
2. Use your scripted field's value in your email template.
Hello Ivan,
Your solution looks good. However, changing the actual project fields was not an option. Therefore, I was able to get the result I needed by Writing the following code in the Html Edit Velocity Markup and it works well.
<p>
#set($meetingID = $issue.getCustomFieldValue("customfield_12345").toString())
#if( $meetingID == '2222222222')
<h2><a href="https://my/meetingroom1">MEETING LINK</a></h2>
#elseif( $meetingID == '1111111111' )
<h2><a href="https://my/meetingroom2">MEETING LINK</a></h2>
#elseif( $meetingID == '3333333333' )
<h2><a href="https://my/meetingroom3">MEETING LINK</a></h2>
#else
<strong>No Meeting Link</strong>
#end
</p>
Thank you
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.