mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
19 lines
385 B
Ruby
19 lines
385 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StepComment < Comment
|
|
before_create :fill_unseen_by
|
|
|
|
belongs_to :step, foreign_key: :associated_id, inverse_of: :step_comments
|
|
|
|
validates :step, presence: true
|
|
|
|
def commentable
|
|
step
|
|
end
|
|
|
|
private
|
|
|
|
def fill_unseen_by
|
|
self.unseen_by += step.protocol.my_module.experiment.project.users.where.not(id: user.id).pluck(:id)
|
|
end
|
|
end
|