15 lines
521 B
Ruby
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
|