Commit 24b0c5ad by Joern Barthel Committed by Mike Burns

Added uploaded_file instance variable for new assigns

parent 131a8b1b
......@@ -94,6 +94,8 @@ module Paperclip
uploaded_filename = uploaded_file.original_filename
uploaded_file = uploaded_file.to_file(:original)
close_uploaded_file = uploaded_file.respond_to?(:close)
else
instance_write(:uploaded_file, uploaded_file)
end
return nil unless valid_assignment?(uploaded_file)
......@@ -197,6 +199,11 @@ module Paperclip
end
end
# Returns the uploaded file if present.
def uploaded_file
instance_read(:uploaded_file)
end
# Returns the name of the file as originally assigned, and lives in the
# <attachment>_file_name attribute of the model.
def original_filename
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment