X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/95d899786a1bbabacc0cd12ef1c4814118d9d0de..2c67c079ac39cefd3b096524fc0b7364b0eb21d7:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index 85aca4334..9bd792ddc 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -2,8 +2,9 @@ class Way < ActiveRecord::Base require 'xml/libxml' include ConsistencyValidations + include NotRedactable - set_table_name 'current_ways' + self.table_name = "current_ways" belongs_to :changeset @@ -64,6 +65,10 @@ class Way < ActiveRecord::Base # and manually set to false before the actual delete. way.visible = true + # Start with no tags + way.tags = Hash.new + + # Add in any tags from the XML pt.find('tag').each do |tag| raise OSM::APIBadXMLError.new("way", pt, "tag is missing key") if tag['k'].nil? raise OSM::APIBadXMLError.new("way", pt, "tag is missing value") if tag['v'].nil?