# frozen_string_literal: true module EuchreCamp module Actions module Auth class Logout < EuchreCamp::Action def handle(request, response) request.session.clear response.redirect_to '/rankings' end end end end end