Files
danbooru/app/logical/post_sets/intro.rb
2013-06-30 23:55:53 -07:00

16 lines
306 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:>10").paginate(page, :search_count => nil, :limit => 6)
temp.all
temp
end
end
end
end