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