How can I exclude a custom field content from being included in the update JIRA notification?
This particular field (group sign-off plugin) contains a long script that is applied during a transition into an approval status. It is rendered graphically by the plug-in on the UI, but the JIRA notificaiton sends the raw script (which is just confusing to the end user).
I would assume the principle method of removing a custom field from notifications would be the same regardless of the field type.
Thanks!
To hide some fields in email-notification I added following if-clause to velocity-template changelog.vm.
#foreach ($changeitem in $changelog.getRelated("ChildChangeItem")) #if(!$changeitem.getString("field").equals("FIELDNAMETOHIDE")) <tr valign="top"> SOME CODE </tr> #end #end
The file can be found for html-mails in \%JIRA-HOME%\WEB-INF\classes\templates\email\html\includes\fields and for text-mails in \%JIRA-HOME%\WEB-INF\classes\templates\email\text\includes\fields.
Jochen, thanks for great reply!
Looks like right answer to my case.
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.
Jochen
What code should be written in place of "SOME CODE" below ? Please advise.
#foreach ($changeitem in $changelog.getRelated("ChildChangeItem"))
#if(!$changeitem.getString("field").equals("FIELDNAMETOHIDE"))
<tr valign="top">
SOME CODE
</tr>
#end
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Depends on what you want to show in the email notification. If you let the code as it is in JIRA Standard and just insert the if-clause, notifications are sent as normal but not for the change event of the excluded field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sad enough, this doesn't seem to work anymore with latest JIRA versions. Instead of no notification I get an empty one - saying that the issue has been changed but not listing the changes.
Cheers,
Kirstin
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.
It's a very old topic, but I was just looking for a solution with Jira 9.4 and this one works:
Edit email-batch/html/IssueUpdateBatcher-content.vm
<table>
#foreach($update in $fieldGroup.updates)
#if($update.fieldName.equals("FIELDNAMETOHIDE"))
<tr class="field-update">
<td valign="top" align="left" class="updates-diff-label">$escape.apply($update.fieldName):</td>
<td valign="top" align="left" class="updates-diff-content">REMOVED</td>
#end
#if(!$update.fieldName.equals("FIELDNAMETOHIDE"))
<tr class="field-update">
<td valign="top" align="left" class="updates-diff-label">$escape.apply($update.fieldName):</td>
<td valign="top" align="left" class="updates-diff-content">$update.diff</td>
#end
</tr>
#end
</table>
Please note that you need to add the display name of the field, not the internal one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does anybody have an idea, how to do this programmatically in scope of a plugin development?
My developed custom field also contain some "cryptic" uninteresting content for the user and I don't want to delegate the problem to an administrator who is running the plugin in his JIRA instanz.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
any update on this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i'm also interesting in this question.
guys, is there any news to this topic?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.