X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/34e3e51456774127d43408b7ab65c24f41373f62..dae3dcf87edcfc0648cd0b93b069b0eee67d3ab7:/app/models/changeset_comment.rb diff --git a/app/models/changeset_comment.rb b/app/models/changeset_comment.rb index 1f037d667..2fedadff0 100644 --- a/app/models/changeset_comment.rb +++ b/app/models/changeset_comment.rb @@ -2,16 +2,15 @@ class ChangesetComment < ActiveRecord::Base belongs_to :changeset belongs_to :author, :class_name => "User" - validates_presence_of :id, :on => :update # is it necessary? - validates_uniqueness_of :id - validates_presence_of :changeset - validates_associated :changeset - validates_presence_of :author - validates_associated :author - validates :visible, :inclusion => { :in => [true,false] } + validates :id, :uniqueness => true, :presence => { :on => :update }, + :numericality => { :on => :update, :integer_only => true } + validates :changeset, :presence => true, :associated => true + validates :author, :presence => true, :associated => true + validates :visible, :inclusion => [true, false] + validates :body, :format => /\A[^\x00-\x08\x0b-\x0c\x0e-\x1f\x7f\ufffe\uffff]*\z/ # Return the comment text def body - RichText.new("text", read_attribute(:body)) + RichText.new("text", self[:body]) end end