VRFS-1326 added includes(:latest) to PromoLatest.active impl

This commit is contained in:
Jonathan Kolyer 2014-03-04 08:17:56 +00:00
parent b4c168c12a
commit 7a991a8032
1 changed files with 1 additions and 1 deletions

View File

@ -129,6 +129,6 @@ class JamRuby::PromoLatest < JamRuby::Promotional
end
def self.active(max_count=10)
super.select { |pp| pp.latest.present? ? pp : nil }.compact
super.includes(:latest).select { |pp| pp.latest.present? ? pp : nil }.compact
end
end