11 lines
412 B
Ruby
11 lines
412 B
Ruby
class IdCard::Exception < ApplicationRecord
|
|
belongs_to :id_card_setup
|
|
has_many :id_card_exception_items
|
|
accepts_nested_attributes_for :id_card_exception_items, allow_destroy: true, reject_if: :all_blank
|
|
|
|
VALID_TYPES = ['zipcode', 'state', 'family_id']
|
|
|
|
validates :type, inclusion: { in: VALID_TYPES,
|
|
message: "%{value} is not a valid exception type" }
|
|
end
|