Files
danbooru/app/presenters/post_presenter.rb
2010-03-17 19:20:44 -04:00

15 lines
162 B
Ruby

class PostPresenter < Presenter
def initialize(post)
@post = post
end
def tag_list_html
end
def image_html
end
def note_html
end
end