openstreetmap-website/app/models/changeset_comment.rb
2015-02-26 00:12:54 +00:00

15 lines
521 B
Ruby

class ChangesetComment < ActiveRecord::Base
belongs_to :changeset
belongs_to :author, :class_name => "User"
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]
# Return the comment text
def body
RichText.new("text", self[:body])
end
end