Files
adamantium/app/views/trips/index.rb
2023-05-09 21:52:04 +10:00

14 lines
206 B
Ruby

module Adamantium
module Views
module Trips
class Index < View
include Deps["repos.trip_repo"]
expose :trips do
trip_repo.list
end
end
end
end
end