X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5a8c4faf3ebf4e80bd41b2f281bc3c23309739d5..8090e086daad67eac711ad6fd6a5eba6f28d44fd:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index f1c46abf3..9bd792ddc 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -2,6 +2,7 @@ class Way < ActiveRecord::Base require 'xml/libxml' include ConsistencyValidations + include NotRedactable self.table_name = "current_ways" @@ -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?