]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_entry.rb
Merge 12304:14009 from trunk.
[rails.git] / app / models / diary_entry.rb
index c20788fbbe7858b6056d5773ae2183a5941b0d2e..8063372da9065c67c18c15a4f0dce2847cc39485 100644 (file)
@@ -6,8 +6,10 @@ class DiaryEntry < ActiveRecord::Base
 
   validates_presence_of :title, :body
   validates_length_of :title, :within => 1..255
-  validates_length_of :language, :within => 2..3
-  validates_numericality_of :latitude, :allow_nil => true
-  validates_numericality_of :longitude, :allow_nil => true
+  validates_length_of :language, :within => 2..3, :allow_nil => true
+  validates_numericality_of :latitude, :allow_nil => true,
+                            :greater_than_or_equal_to => -90, :less_than_or_equal_to => 90
+  validates_numericality_of :longitude, :allow_nil => true,
+                            :greater_than_or_equal_to => -180, :less_than_or_equal_to => 180
   validates_associated :user
 end