Flowdock
method

validate

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: PresenceValidator
validate(record) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/validations/presence.rb, line 4
      def validate(record)
        super
        attributes.each do |attribute|
          next unless record.class._reflect_on_association(attribute)
          associated_records = Array.wrap(record.send(attribute))

          # Superclass validates presence. Ensure present records aren't about to be destroyed.
          if associated_records.present? && associated_records.all? { |r| r.marked_for_destruction? }
            record.errors.add(attribute, :blank, options)
          end
        end
      end
Register or log in to add new notes.