Files
danbooru/app/controllers/explore/posts_controller.rb
2013-03-19 23:10:10 +11:00

12 lines
261 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
end
end