abdf600506
Add the view definition for player profile page that was missing from the previous commit.
14 lines
231 B
Ruby
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
|