15 lines
280 B
Ruby
15 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EuchreCamp
|
|
module Views
|
|
module Admin
|
|
class Index < EuchreCamp::View
|
|
expose :total_players
|
|
expose :active_tournaments
|
|
expose :completed_tournaments
|
|
expose :recent_matches
|
|
end
|
|
end
|
|
end
|
|
end
|