aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/application_controller.rb
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-01-13 11:49:00 +0000
committerSeb Bacon <seb.bacon@gmail.com>2012-01-13 11:49:00 +0000
commitcec2c545e0a10e0641c4ee67839c88d872b394b8 (patch)
tree581f5c8ee5d2de1e9c2d9b5f0f64c8a7b41689ad /app/controllers/application_controller.rb
parent58832016b6be8ea5ca84e9bb28df80f87040cb50 (diff)
Ensure we show "all requests" in order that they were last updated. FIxes #343.
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index ca6e2ba64..4e2afed5a 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -435,7 +435,7 @@ class ApplicationController < ActionController::Base
params[:latest_status] = [params[:latest_status]]
end
if params[:latest_status].include?("recent") || params[:latest_status].include?("all")
- query += " variety:sent"
+ query += " variety:sent OR variety:followup_sent OR variety:response OR variety:comment"
end
if params[:latest_status].include? "successful"
statuses << ['latest_status:successful', 'latest_status:partially_successful']