Class: Antivirus::Validator::ProfanityFilterValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/antivirus/validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



4
5
6
# File 'lib/antivirus/validator.rb', line 4

def validate_each(record, attribute, value)
  record.errors[attribute] << message if value && profane?(value)
end