Configuring session and password controllers as engine, and getting integration tests from devise example app.

This commit is contained in:
Carlos A. da Silva
2009-10-07 21:46:40 -03:00
parent 0ba9980355
commit 7ce49cbbe8
60 changed files with 27590 additions and 69 deletions

View File

@@ -0,0 +1,10 @@
# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.
class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time
protect_from_forgery # See ActionController::RequestForgeryProtection for details
# Scrub sensitive parameters from your log
# filter_parameter_logging :password
end