From abdf600506c8336060903949b3d29fd194c7c9b6 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Fri, 27 Mar 2026 12:25:54 -0700 Subject: [PATCH] fix: add missing player profile view file Add the view definition for player profile page that was missing from the previous commit. --- app/views/players/profile.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/views/players/profile.rb diff --git a/app/views/players/profile.rb b/app/views/players/profile.rb new file mode 100644 index 0000000..a02739a --- /dev/null +++ b/app/views/players/profile.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +module EuchreCamp + module Views + module Players + class Profile < EuchreCamp::View + expose :player + expose :partnerships + expose :recent_games + end + end + end +end