fixes #2454: Add a new popular posts page for view counts

This commit is contained in:
r888888888
2015-07-24 15:55:24 -07:00
parent cb57b08d54
commit cc6da3ff89
8 changed files with 145 additions and 3 deletions

View File

@@ -8,6 +8,12 @@ module Explore
respond_with(@posts)
end
def popular_view
@post_set = PostSets::PopularView.new(params[:date], params[:scale])
@posts = @post_set.posts
respond_with(@posts)
end
def intro
@presenter = IntroPresenter.new
render :layout => "blank"