include upload limit in user promotion report

This commit is contained in:
r888888888
2015-09-14 15:42:29 -07:00
parent 6e93dedf3d
commit 872c20e8d2
2 changed files with 3 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ module Reports
end
def users
::User.where("users.level < ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").limit(50).map {|x| Reports::UserPromotions::User.new(x)}
::User.where("users.level < ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").map {|x| Reports::UserPromotions::User.new(x)}
end
end
end