diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-01-03 21:32:02 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-01-03 21:32:02 -0500 |
commit | 090d12b49b80303ad521ce75b01ea89752417303 (patch) | |
tree | 1caf723423f8f89497a09403e6da4334590f7e49 /railties/lib | |
parent | 3e6e3e90ef432f9fa70ee07e4ac4924e9005dc71 (diff) | |
download | rails-090d12b49b80303ad521ce75b01ea89752417303.tar.gz rails-090d12b49b80303ad521ce75b01ea89752417303.tar.bz2 rails-090d12b49b80303ad521ce75b01ea89752417303.zip |
Added that ActionController::Base now does helper :all instead of relying on the default ApplicationController in Rails to do it [DHH]
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb b/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb index 9889b52893..643a7ca16d 100644 --- a/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +++ b/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb @@ -2,7 +2,6 @@ # Likewise, all the methods added will be available for all controllers. class ApplicationController < ActionController::Base - helper :all protect_from_forgery filter_parameter_logging :password end |