]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Make the /export URL work.
[rails.git] / app / controllers / site_controller.rb
index 767220c7905ed0be8bae70bf324a07f6c1c77be7..172d5da9cc9b3149a3bc3f2e441083f9d6eaaac3 100644 (file)
@@ -2,6 +2,10 @@ class SiteController < ApplicationController
   before_filter :authorize_web
   before_filter :require_user, :only => [:edit]
 
+  def export
+    render :action => 'index'
+  end
+
   def goto_way
     way = Way.find(params[:id])
 
@@ -12,5 +16,4 @@ class SiteController < ApplicationController
       redirect_to :back
     end
   end
-
 end