Class: Grape::Validations::AllOrNoneOfValidator

Inherits:
MultipleParamsBase show all
Defined in:
lib/grape/validations/validators/all_or_none.rb

Instance Attribute Summary

Attributes inherited from MultipleParamsBase

#scoped_params

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

convert_to_short_name, #fail_fast?, inherited, #initialize, #message, #options_key?, #validate

Constructor Details

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

Instance Method Details

#validate!(params) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/grape/validations/validators/all_or_none.rb', line 5

def validate!(params)
  super
  if scope_requires_params && only_subset_present
    raise Grape::Exceptions::Validation, params: all_keys, message: message(:all_or_none)
  end
  params
end