Files
danbooru/app/logical/post_sets/intro.rb
2014-04-24 22:24:42 -07:00

16 lines
342 B
Ruby

module PostSets
class Intro < PostSets::Post
def initialize(tags)
super(tags)
end
def posts
@posts ||= begin
temp = ::Post.tag_match("#{tag_string} favcount:>3").paginate(page, :search_count => nil, :limit => 5)
temp.each # hack to force rails to eager load
temp
end
end
end
end