Files
danbooru/app/controllers/explore/posts_controller.rb
2011-08-11 15:39:51 -04:00

12 lines
265 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