mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
12 lines
171 B
Ruby
12 lines
171 B
Ruby
class PublishedPostController < ApplicationController
|
|
|
|
layout 'post'
|
|
|
|
def show
|
|
@post = Post.find params[:id]
|
|
@post.try(:increment!, :viewed_times)
|
|
end
|
|
|
|
|
|
end
|