]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/relation.rb
Make setting of a default status for new notes work
[rails.git] / app / models / relation.rb
index 659c4f18a7297651ad1024cf2a59acdb5f0e26a4..21ee058d8ac80e26f6969c6d7c5b49052e9075f5 100644 (file)
@@ -3,7 +3,7 @@ class Relation < ActiveRecord::Base
   
   include ConsistencyValidations
   
-  set_table_name 'current_relations'
+  self.table_name = "current_relations"
 
   belongs_to :changeset
 
@@ -66,6 +66,10 @@ class Relation < ActiveRecord::Base
     # and manually set to false before the actual delete.
     relation.visible = true
 
+    # Start with no tags
+    relation.tags = Hash.new
+
+    # Add in any tags from the XML
     pt.find('tag').each do |tag|
       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing key") if tag['k'].nil?
       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing value") if tag['v'].nil?