X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9d57643812a8ee94022541c1119a69374565a6dd..c8bf26711c935aa14af1cfd72d8badc39b130f85:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 767220c79..4b22e46fd 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -2,15 +2,7 @@ class SiteController < ApplicationController before_filter :authorize_web before_filter :require_user, :only => [:edit] - def goto_way - way = Way.find(params[:id]) - - begin - node = way.way_nodes.first.node - redirect_to :controller => 'site', :action => 'index', :lat => node.latitude, :lon => node.longitude, :zoom => 6 - rescue - redirect_to :back - end + def export + render :action => 'index' end - end