Sha256: 2c2e40713946dfbc45c611afe8270217d519d06e4005f3122fd472405d9b268f
Contents?: true
Size: 671 Bytes
Versions: 27
Compression:
Stored size: 671 Bytes
Contents
class AuthlogicConnect::CallbackFilter def initialize(app) @app = app end # this intercepts how the browser interprets the url. # so we override it and say, # "if we've stored a variable in the session called :auth_callback_method, # then convert that into a POST call so we re-call the original method" def call(env) if env["rack.session"].nil? raise "Make sure you are setting the session in Rack too! Place this in config/application.rb" end unless env["rack.session"][:auth_callback_method].blank? env["REQUEST_METHOD"] = env["rack.session"].delete(:auth_callback_method).to_s.upcase end @app.call(env) end end
Version data entries
27 entries across 27 versions & 8 rubygems