Class: ActiveRecord::Validations::AssociationNotSoftDestroyedValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- ActiveRecord::Validations::AssociationNotSoftDestroyedValidator
- Defined in:
- lib/paranoia.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
358 359 360 361 362 363 |
# File 'lib/paranoia.rb', line 358 def validate_each(record, attribute, value) # if association is soft destroyed, add an error if value.present? && value.paranoia_destroyed? record.errors.add(attribute, 'has been soft-deleted') end end |