mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
8 lines
208 B
Ruby
8 lines
208 B
Ruby
class TaskComment < Comment
|
|
belongs_to :my_module,
|
|
foreign_key: :associated_id,
|
|
inverse_of: :task_comments,
|
|
optional: true
|
|
|
|
validates :my_module, presence: true
|
|
end
|