Files
danbooru/app/controllers/explore/posts_controller.rb
2013-06-24 15:09:00 -07:00

17 lines
354 B
Ruby

module Explore
class PostsController < ApplicationController
respond_to :html, :xml, :json
def popular
@post_set = PostSets::Popular.new(params[:date], params[:scale])
@posts = @post_set.posts
respond_with(@posts)
end
def intro
@presenter = IntroPresenter.new
render :layout => "blank"
end
end
end