Files
libr-2/app/controllers/published_post_controller.rb
2015-09-17 16:48:08 +08:00

12 lines
171 B
Ruby

class PublishedPostController < ApplicationController
layout 'post'
def show
@post = Post.find params[:id]
@post.try(:increment!, :viewed_times)
end
end