Class: ActiveNode::Validations::UniquenessValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/active_node/validations/uniqueness.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



6
7
8
9
10
# File 'lib/active_node/validations/uniqueness.rb', line 6

def validate_each(record, attribute, value)
  if value && other_matching_records(record, attribute, value).any?
    record.errors.add(attribute, :taken, value: value)
  end
end