diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-30 18:59:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-30 18:59:51 +0000 |
commit | e045215db7e38b0318b06aa62892e7241aa5095a (patch) | |
tree | 3b5c48a990f750d7732636059b4a6baaa559642f /app/models | |
parent | 785569b980c0bf38e47a5514ede9f750e79ee131 (diff) | |
download | redmine-e045215db7e38b0318b06aa62892e7241aa5095a.tar.gz redmine-e045215db7e38b0318b06aa62892e7241aa5095a.zip |
Remove attachment after transaction commit (#20388).
Patch by Ivan Zabrovskiy.
git-svn-id: http://svn.redmine.org/redmine/trunk@14630 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/attachment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/attachment.rb b/app/models/attachment.rb index d1d7c6dd0..5fa89ee5a 100644 --- a/app/models/attachment.rb +++ b/app/models/attachment.rb @@ -53,7 +53,7 @@ class Attachment < ActiveRecord::Base @@thumbnails_storage_path = File.join(Rails.root, "tmp", "thumbnails") before_create :files_to_final_location - after_destroy :delete_from_disk + after_commit :delete_from_disk, :on => :destroy # Returns an unsaved copy of the attachment def copy(attributes=nil) |