mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
6 lines
168 B
Ruby
6 lines
168 B
Ruby
class ProjectComment < Comment
|
|
belongs_to :project, foreign_key: :associated_id,
|
|
inverse_of: :project_comments
|
|
|
|
validates :project, presence: true
|
|
end
|