X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a42dc9f4826da27b21fa1f66ea6318110afaa0b2..ffe8dbaa2305511cb5d4e98d28afa492943ff2bf:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index d01b86bba..767220c79 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,5 +1,16 @@ class SiteController < ApplicationController - def index + 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 end + end