module Roda::RodaPlugins::Sessions::InstanceMethods

def clear_session

instead of the previous creation timestamp.
so that the session cookie will use a new creation timestamp
Clear data from the session, and update the request environment
def clear_session
  session.clear
  env.delete(SESSION_CREATED_AT)
  env.delete(SESSION_UPDATED_AT)
  nil
end