Add-On Email This Issue – order comments

Webadm September 11, 2014

Hi,

is it possible to change the order of comments in emails?

Now new comments are on the bootom of the email. We would like to have new comments on the top of the mail.

 

Thank you!

5 answers

0 votes
Raffaele Verre September 11, 2014

Great!

can you vote my response?

0 votes
Webadm September 11, 2014

Thank you! That works for me!

0 votes
Raffaele Verre September 11, 2014

I don't know this add-on
The language is velocity.

Try this:

 

#if ($!emailDef.emailOptions.addComments)
    $i18n.getText("common.words.comments"):
     
        #set($c = $!publicComments.size())
    #foreach ($i in $!publicComments)
                 #set($c = $c - 1)
                 #set($comment = $!publicComments.get($c))
        $!{comment.authorFullName} - $!{dateformatter.format($comment.created)}
         
        $comment.body
        ------------------
    #end
#end
0 votes
Webadm September 11, 2014

Thank you, bit i do not use the JIRA mail function. We work with an add-on called "email this issue".

 

If found following code in this add-on:

#if ($!emailDef.emailOptions.addComments)
	$i18n.getText("common.words.comments"):
	
	#foreach ($comment in $!publicComments)
		$!{comment.authorFullName} - $!{dateformatter.format($comment.created)}
		
		$comment.body
		------------------
	#end
#end

How can i order the comments? I do not know this script or template language.

0 votes
Raffaele Verre September 11, 2014

Suggest an answer

Log in or Sign up to answer