mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added ActionController::Base.enable_upload_progress for people who want to play with the experimental upload progress
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1607 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
50f0a73624
commit
eb2b86d795
1 changed files with 6 additions and 0 deletions
|
@ -325,6 +325,12 @@ module ActionController #:nodoc:
|
|||
path_of_controller_root = path_of_calling_controller.sub(/#{controller_path.split("/")[0..-2]}$/, "")
|
||||
self.template_root = path_of_controller_root
|
||||
end
|
||||
|
||||
# Temporary method for enabling upload progress until it's ready to leave experimental mode
|
||||
def enable_upload_progress # :nodoc:
|
||||
require 'action_controller/upload_progress'
|
||||
include ActionController::UploadProgress
|
||||
end
|
||||
end
|
||||
|
||||
public
|
||||
|
|
Loading…
Reference in a new issue