1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-11 03:33:07 +00:00

Merged r22285 from trunk to 5.0-stable (#38697).

git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22286 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-08-30 07:40:32 +00:00
parent 37c3246921
commit 001e48a151
2 changed files with 13 additions and 1 deletions

View File

@ -281,7 +281,7 @@ module Redmine
container = obj.is_a?(Journal) ? obj.journalized : obj
attachments = container.attachments if container.respond_to?(:attachments)
if (controller_name == 'previews' || action_name == 'preview') && @attachments.present?
if (controller_path == 'previews' || action_name == 'preview') && @attachments.present?
attachments = (attachments.to_a + @attachments).compact
end
if attachments.present? && (attachment = Attachment.latest_attach(attachments, filename))

View File

@ -199,6 +199,18 @@ class MailerTest < ActiveSupport::TestCase
end
end
def test_thumbnail_macro_in_email
set_tmp_attachments_directory
issue = Issue.generate!(:description => '{{thumbnail(image.png)}}')
issue.attachments << Attachment.new(:file => mock_file_with_options(:original_filename => 'image.png'), :author => User.find(1))
issue.save!
assert Mailer.deliver_issue_add(issue)
assert_select_email do
assert_select 'img[alt="image.png"]'
end
end
def test_email_headers
with_settings :mail_from => 'Redmine <redmine@example.net>' do
issue = Issue.find(1)