1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 09:21:12 +00:00

Copy wiki attachments on project copy (#10282).

Patch by  Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17315 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2018-04-28 04:44:32 +00:00
parent ea562ffa43
commit 07f0c2791e
2 changed files with 5 additions and 1 deletions

View File

@ -930,6 +930,7 @@ class Project < ActiveRecord::Base
new_wiki_page = WikiPage.new(page.attributes.dup.except("id", "wiki_id", "created_on", "parent_id"))
new_wiki_page.content = new_wiki_content
wiki.pages << new_wiki_page
new_wiki_page.attachments = page.attachments.map{|attachement| attachement.copy(:container => new_wiki_page)}
wiki_pages_map[page.id] = new_wiki_page
end

View File

@ -303,7 +303,8 @@ class ProjectCopyTest < ActiveSupport::TestCase
assert project.wiki
end
test "#copy should copy wiki pages and content with hierarchy" do
test "#copy should copy wiki pages, attachment and content with hierarchy" do
@source_project.wiki.pages.first.attachments << Attachment.first.copy
assert_difference 'WikiPage.count', @source_project.wiki.pages.size do
assert @project.copy(@source_project)
end
@ -311,6 +312,8 @@ class ProjectCopyTest < ActiveSupport::TestCase
assert @project.wiki
assert_equal @source_project.wiki.pages.size, @project.wiki.pages.size
assert_equal @source_project.wiki.pages.first.attachments.first.filename, @project.wiki.pages.first.attachments.first.filename
@project.wiki.pages.each do |wiki_page|
assert wiki_page.content
assert !@source_project.wiki.pages.include?(wiki_page)