diff options
author | Yaroslav Markin <yaroslav@markin.net> | 2008-05-07 13:50:28 +0400 |
---|---|---|
committer | Yaroslav Markin <yaroslav@markin.net> | 2008-05-07 13:50:28 +0400 |
commit | d912bd5672316454457ae83f6e9dda5197beeb6f (patch) | |
tree | 51e06f09c8f27e20cf4a7105bf248fef66935a7f /railties | |
parent | 88e4de5ab71388bd7f58713dfd15bb594971ae79 (diff) | |
download | rails-d912bd5672316454457ae83f6e9dda5197beeb6f.tar.gz rails-d912bd5672316454457ae83f6e9dda5197beeb6f.tar.bz2 rails-d912bd5672316454457ae83f6e9dda5197beeb6f.zip |
Add a filter_parameter_logging usage hint to generated ApplicationController.
This may help to remind the developer to filter sensitive information from application logs.
Closes #11578
Diffstat (limited to 'railties')
-rw-r--r-- | railties/helpers/application.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb index 9a79f69a41..0a3ed822a4 100644 --- a/railties/helpers/application.rb +++ b/railties/helpers/application.rb @@ -7,4 +7,9 @@ class ApplicationController < ActionController::Base # See ActionController::RequestForgeryProtection for details # Uncomment the :secret if you're not using the cookie session store protect_from_forgery # :secret => '<%= app_secret %>' + + # See ActionController::Base for details + # Uncomment this to filter the contents of submitted sensitive data parameters + # from your application log (in this case, all fields with names like "password"). + # filter_parameter_logging :password end |