Sha256: e14e06e35c86905209b9486e613fe342dd2fedc0d5d9eec315e268bc2b122648
Contents?: true
Size: 959 Bytes
Versions: 1
Compression:
Stored size: 959 Bytes
Contents
module RailsWarden class Manager def self.new(app, opts = {}, &block) # Get the failure application opts[:failure_app] = opts[:failure_app].to_s.classify.constantize if opts[:failure_app] opts[:defaults] = [opts[:defaults]].flatten if opts[:defaults] # Set the default user if user = opts.delete(:default_user) RailsWarden.default_user_class = user.to_s.classify.constantize end # Set the unauthenticated action if it's set if ua = opts.delete(:unauthenticated_action) RailsWarden.unauthenticated_action = ua end # Rails needs the action to be passed in with the params Warden::Manager.before_failure do |env, opts| if request = env["action_controller.rescue.request"] request.params["action"] = RailsWarden.unauthenticated_action end end Warden::Manager.new(app, opts, &block) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_warden-0.1.1 | lib/rails_warden/manager.rb |