]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/node.rb
cosmetic tweaks to diary interface. icon for new entries link
[rails.git] / app / models / node.rb
index 391b50dcda335b4cb7ddb1e54cce2ccad1775b51..e926e06a210baa326842920a2c113f39085aee05 100644 (file)
@@ -141,6 +141,9 @@ class Node < ActiveRecord::Base
       old_node.timestamp = t
       old_node.save_with_dependencies!
 
+      # tell the changeset we updated one element only
+      changeset.add_changes! 1
+
       # save the changeset in case of bounding box updates
       changeset.save!
     end
@@ -267,6 +270,13 @@ class Node < ActiveRecord::Base
     @tags[k] = v
   end
 
+  ##
+  # are the preconditions OK? this is mainly here to keep the duck
+  # typing interface the same between nodes, ways and relations.
+  def preconditions_ok?
+    in_world?
+  end
+
   ##
   # dummy method to make the interfaces of node, way and relation
   # more consistent.