Merge pull request #68 from FoboCasteR/fix-issue-60

fix filter for mongoid (Fix #60)
This commit is contained in:
John McAliley 2013-04-01 18:52:46 -07:00
commit 4a7532f69b
1 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,8 @@ module Impressionist
def impressionist_count(options={})
options.reverse_merge!(:filter=>:request_hash, :start_date=>nil, :end_date=>Time.now)
imps = options[:start_date].blank? ? impressions : impressions.between(created_at: options[:start_date]..options[:end_date])
options[:filter] == :all ? imps.count : imps.where(options[:filter].ne => nil).count
filter = options[:filter]
filter == :all ? imps.count : imps.where(filter.ne => nil).distinct(filter).count
end
def update_impressionist_counter_cache