]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/notes_controller.rb
Reject attempts to create notes with no comment text
[rails.git] / app / controllers / notes_controller.rb
index 0544f8705a527af9379c2368cfdb6cf2455eacc0..8a00296555671f7ce4ecb3ff99ca076cbf3c0a69 100644 (file)
@@ -52,7 +52,7 @@ class NotesController < ApplicationController
     # Check the arguments are sane
     raise OSM::APIBadUserInput.new("No lat was given") unless params[:lat]
     raise OSM::APIBadUserInput.new("No lon was given") unless params[:lon]
-    raise OSM::APIBadUserInput.new("No text was given") unless params[:text]
+    raise OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
 
     # Extract the arguments
     lon = params[:lon].to_f
@@ -84,7 +84,7 @@ class NotesController < ApplicationController
   def comment
     # Check the arguments are sane
     raise OSM::APIBadUserInput.new("No id was given") unless params[:id]
-    raise OSM::APIBadUserInput.new("No text was given") unless params[:text]
+    raise OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
 
     # Extract the arguments
     id = params[:id].to_i