scinote-web/app/models/checklist_item.rb
2016-02-12 16:52:43 +01:00

20 lines
619 B
Ruby

class ChecklistItem < ActiveRecord::Base
validates :text,
presence: true,
length: { maximum: 1000 }
validates :checklist, presence: true
validates :checked, inclusion: { in: [true, false] }
belongs_to :checklist, inverse_of: :checklist_items
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User'
# TODO: get the current_user
# before_save do
# if current_user
# self.created_by ||= current_user
# self.last_modified_by = current_user if self.changed?
# end
# end
end