X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/de973d08cacda5a78707c6c24c44d1efe1f1f798..135ec35a91bcca15637b6436dd7e546468c49690:/app/models/note.rb diff --git a/app/models/note.rb b/app/models/note.rb index d4f9a801f..fa9d0b1ae 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -24,7 +24,7 @@ class Note < ActiveRecord::Base has_many :comments, -> { left_joins(:author).where(:visible => true, :users => { :status => [nil, "active", "confirmed"] }).order(:created_at) }, :class_name => "NoteComment", :foreign_key => :note_id validates :id, :uniqueness => true, :presence => { :on => :update }, - :numericality => { :on => :update, :integer_only => true } + :numericality => { :on => :update, :only_integer => true } validates :latitude, :longitude, :numericality => { :only_integer => true } validates :closed_at, :presence => true, :if => proc { :status == "closed" } validates :status, :inclusion => %w[open closed hidden]