module Roda::RodaPlugins::Sessions::RequestMethods

def session_created_at

The time the session was originally created. nil if there is no active session.
def session_created_at
  session
  Time.at(@env[SESSION_CREATED_AT]) if @env[SESSION_SERIALIZED]
end