]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/export_controller.rb
Remove remaining action cache usage and related infrastructure
[rails.git] / app / controllers / export_controller.rb
index 736efec191f5ffc28db4d3c678a0ca076e573603..074a92ce82635a50e1bbc5ac5eb8ed960de7d347 100644 (file)
@@ -3,8 +3,9 @@ class ExportController < ApplicationController
   before_filter :authorize_web
   before_filter :set_locale
 
+  caches_page :embed
+
   def start
-    render :partial => "sidebar"
   end
 
   #When the user clicks 'Export' we redirect to a URL which generates the export download
@@ -24,4 +25,7 @@ class ExportController < ApplicationController
       redirect_to "http://parent.tile.openstreetmap.org/cgi-bin/export?bbox=#{bbox}&scale=#{scale}&format=#{format}"
     end
   end
+
+  def embed
+  end
 end