Class: Gitlab::Config::Entry::Validators::NestedArrayOfStringsValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Includes:
LegacyValidationHelpers, NestedArrayHelpers
Defined in:
lib/gitlab/config/entry/validators.rb

Instance Method Summary collapse

Methods included from NestedArrayHelpers

#validate_nested_array

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



319
320
321
322
323
324
325
# File 'lib/gitlab/config/entry/validators.rb', line 319

def validate_each(record, attribute, value)
  max_level = options.fetch(:max_level, 1)

  unless validate_nested_array(value, max_level, &method(:validate_string))
    record.errors.add(attribute, "should be an array of strings or a nested array of strings up to #{max_level} levels deep")
  end
end