Halfway through table redesign, saving to revert to working version
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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
|
||||
Reference in New Issue
Block a user