X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cfbdd3f7e1c688e2c875ded9fd847fcc1c3a4caf..45a77397f3f6b97d671999c45abe4ad818955d65:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 767220c79..172d5da9c 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -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