69 70 71 72 73 74
# File 'app/controllers/news_controller.rb', line 69 def show @comments = @news.comments.preload(:commented).to_a @comments.reverse! if User.current.wants_comments_in_reverse_order? Comment.preload_reaction_details(@comments) end