scinote-web/app/models/step_comment.rb
2018-11-14 11:57:53 +01:00

9 lines
224 B
Ruby

class StepComment < Comment
belongs_to :step,
foreign_key: :associated_id,
inverse_of: :step_comments,
touch: true,
optional: true
validates :step, presence: true
end