# frozen_string_literal: true module EuchreCamp module Actions module Admin module Matches class Index < EuchreCamp::Action include Deps[repo: 'repositories.matches'] def handle(_request, response) matches = repo.all response.render(view, matches: matches) end end end end end end