aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/request_controller.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-05-12 09:18:45 +0000
committerfrancis <francis>2008-05-12 09:18:45 +0000
commit47531f990d45f977b4dce03a488085f118ecc219 (patch)
tree4649d14b35ee06adba3588b236d381b11c092081 /app/controllers/request_controller.rb
parent83680dbb60f6fb02a9bda062cc0449da852efc19 (diff)
Alert about successful requests.
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r--app/controllers/request_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb
index a4d8beba6..719fd68e8 100644
--- a/app/controllers/request_controller.rb
+++ b/app/controllers/request_controller.rb
@@ -4,7 +4,7 @@
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
-# $Id: request_controller.rb,v 1.82 2008-05-12 08:35:24 francis Exp $
+# $Id: request_controller.rb,v 1.83 2008-05-12 09:18:45 francis Exp $
class RequestController < ApplicationController
@@ -51,12 +51,12 @@ class RequestController < ApplicationController
@title = "Recently sent Freedom of Information requests"
query = "variety:sent";
sortby = "newest"
- # Track corresponding to this page
@track_thing = TrackThing.create_track_for_all_new_requests
elsif @view == 'successful'
@title = "Recent successful responses"
query = 'variety:response (status:successful OR status:partially_successful)'
sortby = "newest"
+ @track_thing = TrackThing.create_track_for_all_successful_requests
else
raise "unknown request list view " + @view.to_s
end