Files
adamantium/app/views/posts/show.rb
2023-01-27 22:55:09 +11:00

14 lines
266 B
Ruby

module Adamantium
module Views
module Posts
class Show < Adamantium::View
include Deps["repos.post_repo"]
expose :post do |slug:|
Decorators::Posts::Decorator.new(post_repo.fetch!(slug))
end
end
end
end
end