Module: Reflex::Authlogic::Session::InstanceMethods
- Defined in:
- lib/reflex/authlogic/session.rb
Instance Method Summary collapse
-
#save(&block) ⇒ Object
Clears out the block if we are authenticating via react, so that we can redirect without a DoubleRender error.
Instance Method Details
#save(&block) ⇒ Object
Clears out the block if we are authenticating via react, so that we can redirect without a DoubleRender error.
21 22 23 24 |
# File 'lib/reflex/authlogic/session.rb', line 21 def save(&block) block = nil if redirecting_to_oauth_server? super(&block) end |