chore: save current Ruby implementation state before Next.js rewrite

This commit is contained in:
2026-03-27 14:36:22 -07:00
parent e9365faa10
commit 96f7cb86d3
20 changed files with 894 additions and 106 deletions
+4 -3
View File
@@ -1,14 +1,15 @@
# frozen_string_literal: true
require "csv"
module EuchreCamp
module Actions
module Admin
module Matches
class Upload < EuchreCamp::Action
include Deps[events_repo: 'repositories.events']
def handle(request, response)
response.render(view)
tournaments = events_repo.all
response.render(view, tournaments: tournaments)
end
end
end