scinote-web/app/models/step_comment.rb
2018-11-29 18:07:31 +01:00

8 lines
198 B
Ruby

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