Class: Gitlab::Config::Entry::Validators::HashOrStringValidator

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

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



169
170
171
172
173
# File 'lib/gitlab/config/entry/validators.rb', line 169

def validate_each(record, attribute, value)
  unless value.is_a?(Hash) || value.is_a?(String)
    record.errors.add(attribute, 'should be a hash or a string')
  end
end