]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/old_relations_controller.rb
Add OldElementsController base class
[rails.git] / app / controllers / old_relations_controller.rb
index 9dda82021e21c46afe81db153d93fe51478ee201..ea4fb6d120c486529d798ff4df9e7f587acbd03d 100644 (file)
@@ -1,14 +1,11 @@
-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])
+    render "browse/history"
+  rescue ActiveRecord::RecordNotFound
+    render "browse/not_found", :status => :not_found
+  end
 
   def show
     @type = "relation"