Module: Roda::RodaPlugins::ConditionalSessions::InstanceMethods
- Defined in:
- lib/roda/plugins/conditional_sessions.rb
Instance Method Summary collapse
-
#clear_session ⇒ Object
Do nothing if not using sessions.
Instance Method Details
#clear_session ⇒ Object
Do nothing if not using sessions.
34 35 36 |
# File 'lib/roda/plugins/conditional_sessions.rb', line 34 def clear_session super if @_request.use_sessions? end |