Class: Grape::Validations::PresenceValidator

Inherits:
Validator
  • Object
show all
Defined in:
lib/grape/validations/presence.rb

Instance Attribute Summary

Attributes inherited from Validator

#attrs

Instance Method Summary collapse

Methods inherited from Validator

convert_to_short_name, inherited, #initialize

Constructor Details

This class inherits a constructor from Grape::Validations::Validator

Instance Method Details

#validate!(params) ⇒ Object



4
5
6
7
# File 'lib/grape/validations/presence.rb', line 4

def validate!(params)
  return unless @scope.should_validate?(params)
  super
end

#validate_param!(attr_name, params) ⇒ Object



9
10
11
12
13
# File 'lib/grape/validations/presence.rb', line 9

def validate_param!(attr_name, params)
  unless params.respond_to?(:key?) && params.key?(attr_name)
    raise Grape::Exceptions::Validation, param: @scope.full_name(attr_name), message_key: :presence
  end
end