Files
euchre_camp/app/views/players/profile.rb
T
david abdf600506 fix: add missing player profile view file
Add the view definition for player profile page that was missing
from the previous commit.
2026-03-27 12:25:54 -07:00

14 lines
231 B
Ruby

# 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