mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-02 21:51:51 +08:00
9 lines
232 B
Ruby
9 lines
232 B
Ruby
class ResultComment < Comment
|
|
belongs_to :result,
|
|
foreign_key: :associated_id,
|
|
inverse_of: :result_comments,
|
|
touch: true,
|
|
optional: true
|
|
|
|
validates :result, presence: true
|
|
end
|