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

Merged r21716 and r21719 from trunk to 5.0-stable (#37379).

git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21735 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2022-07-21 14:31:16 +00:00
parent 5740256ed9
commit 9730f6f8ec
2 changed files with 25 additions and 2 deletions

View File

@ -278,8 +278,12 @@ module Redmine
size = size.to_i
size = 200 unless size > 0
if obj && obj.respond_to?(:attachments) &&
attachment = Attachment.latest_attach(obj.attachments, filename)
attachments = obj.attachments if obj.respond_to?(:attachments)
if (controller_name == 'previews' || action_name == 'preview') && @attachments.present?
attachments = (attachments.to_a + @attachments).compact
end
if attachments.present? && (attachment = Attachment.latest_attach(attachments, filename))
title = options[:title] || attachment.title
thumbnail_url =
url_for(:controller => 'attachments', :action => 'thumbnail',

View File

@ -88,6 +88,25 @@ class PreviewsControllerTest < Redmine::ControllerTest
assert_select 'a.attachment', :text => 'foo.bar'
end
def test_preview_issue_notes_should_show_thumbnail_of_file_immidiately_after_attachment
attachment = Attachment.generate!(filename: 'foo.png', digest: Redmine::Utils.random_hex(32))
attachment.update(container: nil)
@request.session[:user_id] = 2
post(
:issue,
params: {
project_id: '1',
issue_id: 1,
field: 'notes',
text: '{{thumbnail(foo.png)}}',
attachments: {'1': { token: attachment.token }}
}
)
assert_response :success
assert_select 'a.thumbnail[title=?]', 'foo.png'
end
def test_preview_new_news
get(
:news,