1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-03 06:09:41 +00:00

Copy project attachments (#26622).

Patch by Holger Just.


git-svn-id: http://svn.redmine.org/redmine/trunk@17333 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2018-05-13 08:49:18 +00:00
parent c2c2a9c9f7
commit 45478883a4
2 changed files with 13 additions and 0 deletions

View File

@ -827,6 +827,11 @@ class Project < ActiveRecord::Base
Project.transaction do
if save
reload
self.attachments = project.attachments.map do |attachment|
attachment.copy(:container => self)
end
to_be_copied.each do |name|
send "copy_#{name}", project
end

View File

@ -51,6 +51,14 @@ class ProjectCopyTest < ActiveSupport::TestCase
assert_equal false, project.copy(@source_project)
end
test "#copy should copy project attachments" do
Attachment.create!(:container => @source_project, :file => uploaded_test_file("testfile.txt", "text/plain"), :author_id => 1)
assert @project.copy(@source_project)
assert_equal 1, @project.attachments.count, "Attachment not copied"
assert_equal "testfile.txt", @project.attachments.first.filename
end
test "#copy should copy issues" do
@source_project.issues << Issue.generate!(:status => IssueStatus.find_by_name('Closed'),
:subject => "copy issue status",