15 lines
234 B
Ruby
15 lines
234 B
Ruby
# 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
|