explore/posts/popular: refactor post previews.
This commit is contained in:
@@ -18,8 +18,7 @@ class StaticController < ApplicationController
|
||||
|
||||
def sitemap
|
||||
@popular_search_service = PopularSearchService.new(Date.yesterday)
|
||||
@post_set = PostSets::Popular.new(Date.yesterday.to_s, "week", limit: 200)
|
||||
@posts = @post_set.posts
|
||||
@posts = Post.where("created_at > ?", 1.week.ago).order(score: :desc).limit(200)
|
||||
render layout: false
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user