Ejemplo n.º 1
0
 public static void show(Long forumId, Long topicId, Integer page) {
   Topic topic = Topic.findById(topicId);
   notFoundIfNull(topic);
   topic.views = 1;
   topic.save();
   render(topic, page);
 }