]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/node_controller.rb
some useful notes in code for ideas that require implementing.
[rails.git] / app / controllers / node_controller.rb
index 03ae64f41939a4c9f4e4dcd92895a3ab33044b40..bfd1031f04a671c285b3bed33163004eca7b3f36 100644 (file)
@@ -87,6 +87,11 @@ class NodeController < ApplicationController
   def delete
     begin
       node = Node.find(params[:id])
+      # FIXME we no longer care about the user, (or maybe we want to check
+      # that the user of the changeset is the same user as is making this
+      # little change?) we really care about the 
+      # changeset which must be open, and that the version that we have been
+      # given is the one that is currently stored in the database
       node.delete_with_history(@user)
 
       render :nothing => true