1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-03 23:53:23 +00:00

Fix that deleting a version silently deletes its attachments (#31087).

Patch by Karel Pičman and Takenori TAKAKI.


git-svn-id: http://svn.redmine.org/redmine/trunk@18008 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-03-26 11:05:20 +00:00
parent 391c069d87
commit f0d579adeb
2 changed files with 8 additions and 1 deletions

View File

@ -353,7 +353,7 @@ class Version < ActiveRecord::Base
end
def deletable?
fixed_issues.empty? && !referenced_by_a_custom_field?
fixed_issues.empty? && !referenced_by_a_custom_field? && attachments.empty?
end
def default_project_version

View File

@ -284,6 +284,13 @@ class VersionTest < ActiveSupport::TestCase
assert_equal false, version.deletable?
end
def test_deletable_should_return_false_when_referenced_by_an_attachment
version = Version.generate!
Attachment.generate!(:container => version, :filename => 'test.txt')
assert_equal false, version.deletable?
end
def test_like_scope
version = Version.create!(:project => Project.find(1), :name => 'Version for like scope test')