2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-03-04 01:15:08 +08:00
discourse/app/models/post_reply.rb
Jarek Radosz 71834c898f
DEV: Update rubocop-discourse to 3.13 and autofix issues (#35073)
Co-authored-by: Loïc Guitaut <loic@discourse.org>
2025-10-06 16:11:01 +02:00

32 lines
802 B
Ruby

# frozen_string_literal: true
class PostReply < ActiveRecord::Base
belongs_to :post
belongs_to :reply, foreign_key: :reply_post_id, class_name: "Post"
validates :reply_post_id, uniqueness: { scope: :post_id }
validate :ensure_same_topic
private
def ensure_same_topic
if post.topic_id != reply.topic_id
self.errors.add(:base, I18n.t("activerecord.errors.models.post_reply.base.different_topic"))
end
end
end
# == Schema Information
#
# Table name: post_replies
#
# post_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# reply_post_id :integer
#
# Indexes
#
# index_post_replies_on_post_id_and_reply_post_id (post_id,reply_post_id) UNIQUE
# index_post_replies_on_reply_post_id (reply_post_id)
#