mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
5 lines
111 B
Ruby
5 lines
111 B
Ruby
class PostsController < ApplicationController
|
|
def show
|
|
@post = Post.find(params[:id]).decorate
|
|
end
|
|
end
|