diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-06-04 11:49:34 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-06-04 11:49:34 +0100 |
commit | f6bb0e5d33ceb5beb80f9561b77c716a04f574a2 (patch) | |
tree | 135c5ccefc742e471f4b74ddf0688aace10a70d7 /app/mailers | |
parent | c304f25a8950f61215ef2fae1e7feb71cfbfeb56 (diff) | |
parent | 9727c7b62fd3fe7b00cfc64cb4b36ba445a3a960 (diff) |
Merge remote-tracking branch 'openaustralia_github/inline_search_method_refactor' into rails-3-develop
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/track_mailer.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/mailers/track_mailer.rb b/app/mailers/track_mailer.rb index 391143214..1bd8a7e23 100644 --- a/app/mailers/track_mailer.rb +++ b/app/mailers/track_mailer.rb @@ -67,7 +67,11 @@ class TrackMailer < ApplicationMailer # Query for things in this track. We use described_at for the # ordering, so we catch anything new (before described), or # anything whose new status has been described. - xapian_object = InfoRequest.full_search([InfoRequestEvent], track_thing.track_query, 'described_at', true, nil, 100, 1) + xapian_object = ActsAsXapian::Search.new([InfoRequestEvent], track_thing.track_query, + :sort_by_prefix => 'described_at', + :sort_by_ascending => true, + :collapse_by_prefix => nil, + :limit => 100) # Go through looking for unalerted things alert_results = [] for result in xapian_object.results |