X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6ca22de4f2c68e4b14a6e2f0938a8657c33adc31..7c522a4e024a8763125251f6df6bbcbcc0f0f1a1:/app/controllers/old_ways_controller.rb diff --git a/app/controllers/old_ways_controller.rb b/app/controllers/old_ways_controller.rb index c8185c633..d18121e6f 100644 --- a/app/controllers/old_ways_controller.rb +++ b/app/controllers/old_ways_controller.rb @@ -1,11 +1,19 @@ -class OldWaysController < OldController - private +class OldWaysController < ApplicationController + layout :map_layout - def lookup_old_element - @old_element = OldWay.find([params[:id], params[:version]]) - end + before_action :authorize_web + before_action :set_locale + before_action -> { check_database_readable(:need_api => true) } + before_action :require_oauth + + authorize_resource + + around_action :web_timeout - def lookup_old_element_versions - @elements = OldWay.where(:way_id => params[:id]).order(:version) + def show + @type = "way" + @feature = OldWay.preload(:old_tags, :changeset => [:changeset_tags, :user], :old_nodes => { :node => [:node_tags, :ways] }).find([params[:id], params[:version]]) + rescue ActiveRecord::RecordNotFound + render :action => "not_found", :status => :not_found end end