Files
adamantium/app/views/podcasts/index.rb

14 lines
221 B
Ruby

module Adamantium
module Views
module Podcasts
class Index < View
include Deps["repos.podcast_repo"]
expose :podcasts do
podcast_repo.listing
end
end
end
end
end