X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/00123f05ba0b0c7a41ae3888cd33b68f13e1d662..231177aa29c8c09135d9921956341a5f477cbb7b:/app/controllers/old_relations_controller.rb?ds=sidebyside diff --git a/app/controllers/old_relations_controller.rb b/app/controllers/old_relations_controller.rb index 9dda82021..8c73eba24 100644 --- a/app/controllers/old_relations_controller.rb +++ b/app/controllers/old_relations_controller.rb @@ -1,14 +1,10 @@ -class OldRelationsController < ApplicationController - layout :map_layout - - 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 +class OldRelationsController < OldElementsController + def index + @type = "relation" + @feature = Relation.preload(:relation_tags, :old_relations => [:old_tags, { :changeset => [:changeset_tags, :user], :old_members => :member }]).find(params[:id]) + rescue ActiveRecord::RecordNotFound + render "browse/not_found", :status => :not_found + end def show @type = "relation"