]> git.openstreetmap.org Git - rails.git/commitdiff
Revert "We can cache the trace list for logged in users now"
authorTom Hughes <tom@compton.nu>
Wed, 1 Sep 2010 12:47:06 +0000 (13:47 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 1 Sep 2010 12:47:06 +0000 (13:47 +0100)
This reverts commit f30dcd1a629449c19bc75fb3e6baa2a58f57d3c5.

app/controllers/trace_controller.rb

index 3777621a4f76705e1ddc17b34e1f4f4af31b9c5b..989d5d5a09fb300448f51aa888f47cd1020eef8e 100644 (file)
@@ -15,7 +15,8 @@ class TraceController < ApplicationController
   before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_data, :api_create]
   around_filter :api_call_handle_error, :only => [:api_details, :api_data, :api_create]
 
   before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_data, :api_create]
   around_filter :api_call_handle_error, :only => [:api_details, :api_data, :api_create]
 
-  caches_action :list, :view, :layout => false
+  caches_action :list, :unless => :logged_in?, :layout => false
+  caches_action :view, :layout => false
   caches_action :georss, :layout => true
   cache_sweeper :trace_sweeper, :only => [:create, :edit, :delete, :api_create], :unless => STATUS == :database_offline
   cache_sweeper :tracetag_sweeper, :only => [:create, :edit, :delete, :api_create], :unless => STATUS == :database_offline
   caches_action :georss, :layout => true
   cache_sweeper :trace_sweeper, :only => [:create, :edit, :delete, :api_create], :unless => STATUS == :database_offline
   cache_sweeper :tracetag_sweeper, :only => [:create, :edit, :delete, :api_create], :unless => STATUS == :database_offline