mirror of
https://github.com/heartcombo/devise.git
synced 2026-04-28 03:00:29 -04:00
Configuring session and password controllers as engine, and getting integration tests from devise example app.
This commit is contained in:
10
test/rails_app/app/controllers/application_controller.rb
Normal file
10
test/rails_app/app/controllers/application_controller.rb
Normal 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
|
||||
Reference in New Issue
Block a user