openstreetmap-website/app/validators/whitespace_validator.rb
Andy Allan 6f70c13062 Use .add method for adding errors
This avoids a deprecation warning on rails 6.1
2021-03-17 17:09:34 +00:00

6 lines
421 B
Ruby

class WhitespaceValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
record.errors.add(attribute, options[:message] || I18n.t("validations.leading_whitespace")) if !options.fetch(:leading, true) && /\A\s/.match?(value)
record.errors.add(attribute, options[:message] || I18n.t("validations.trailing_whitespace")) if !options.fetch(:trailing, true) && /\s\z/.match?(value)
end
end