~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/railties/helpers/application_controller.rb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Filters added to this controller apply to all controllers in the application.
2
 
# Likewise, all the methods added will be available for all controllers.
3
 
 
4
 
class ApplicationController < ActionController::Base
5
 
  helper :all # include all helpers, all the time
6
 
  protect_from_forgery # See ActionController::RequestForgeryProtection for details
7
 
 
8
 
  # Scrub sensitive parameters from your log
9
 
  # filter_parameter_logging :password
10
 
end