openstreetmap-website/app/models/changeset_comment.rb
Andy Allan 8938ab7997 Remove redundant presence validation on belongs_to
There's no need for us to have it when rails does this for us.
2022-03-01 10:01:16 +00:00

37 lines
1.1 KiB
Ruby

# == Schema Information
#
# Table name: changeset_comments
#
# id :integer not null, primary key
# changeset_id :bigint(8) not null
# author_id :bigint(8) not null
# body :text not null
# created_at :datetime not null
# visible :boolean not null
#
# Indexes
#
# index_changeset_comments_on_created_at (created_at)
#
# Foreign Keys
#
# changeset_comments_author_id_fkey (author_id => users.id)
# changeset_comments_changeset_id_fkey (changeset_id => changesets.id)
#
class ChangesetComment < ApplicationRecord
belongs_to :changeset
belongs_to :author, :class_name => "User"
validates :id, :uniqueness => true, :presence => { :on => :update },
:numericality => { :on => :update, :only_integer => true }
validates :changeset, :associated => true
validates :author, :associated => true
validates :visible, :inclusion => [true, false]
validates :body, :characters => true
# Return the comment text
def body
RichText.new("text", self[:body])
end
end