feat: Add match edit and update actions with authorization

This commit is contained in:
2026-03-27 13:10:08 -07:00
parent 9372069926
commit 1d3f128cd5
5 changed files with 200 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# frozen_string_literal: true
module EuchreCamp
module Views
module Admin
module Matches
class Edit < EuchreCamp::View
expose :match
expose :all_players
end
end
end
end
end
+13
View File
@@ -0,0 +1,13 @@
# frozen_string_literal: true
module EuchreCamp
module Views
module Admin
module Matches
class Update < EuchreCamp::View
# No template needed - this action redirects
end
end
end
end
end