2017-06-23 21:19:08 +08:00
|
|
|
class ChecklistItem < ApplicationRecord
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :text, nullify: false
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :text,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :checklist, presence: true
|
|
|
|
validates :checked, inclusion: { in: [true, false] }
|
|
|
|
|
2017-06-28 21:21:32 +08:00
|
|
|
belongs_to :checklist,
|
2019-07-26 18:40:36 +08:00
|
|
|
inverse_of: :checklist_items
|
2017-06-28 21:21:32 +08:00
|
|
|
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
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|