X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7953a883d003b47859f53ea40ccd1db5dae9e040..9fdea1c7398618a99e5b553af2674db7f7326b23:/app/controllers/old_relation_controller.rb diff --git a/app/controllers/old_relation_controller.rb b/app/controllers/old_relation_controller.rb index ffb06bf5e..78eca324c 100644 --- a/app/controllers/old_relation_controller.rb +++ b/app/controllers/old_relation_controller.rb @@ -1,13 +1,11 @@ class OldRelationController < OldController - private - + def lookup_old_element @old_element = OldRelation.find([params[:id], params[:version]]) end - def lookup_old_elements_via_current - relation = Relation.find(params[:id]) - @elements = relation.old_relations + def lookup_old_element_versions + @elements = OldRelation.where(:relation_id => params[:id]).order(:version) end end