mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
20 lines
660 B
Ruby
20 lines
660 B
Ruby
class ChecklistItem < ApplicationRecord
|
|
auto_strip_attributes :text, nullify: false
|
|
validates :text,
|
|
presence: true,
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
|
validates :checklist, presence: true
|
|
validates :checked, inclusion: { in: [true, false] }
|
|
|
|
belongs_to :checklist,
|
|
inverse_of: :checklist_items,
|
|
optional: true
|
|
belongs_to :created_by,
|
|
foreign_key: 'created_by_id',
|
|
class_name: 'User',
|
|
optional: true
|
|
belongs_to :last_modified_by,
|
|
foreign_key: 'last_modified_by_id',
|
|
class_name: 'User',
|
|
optional: true
|
|
end
|