Flowdock
method

set_options_for_callback

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActiveModel::Validations::Callbacks::ClassMethods
set_options_for_callback(options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activemodel/lib/active_model/validations/callbacks.rb, line 101
          def set_options_for_callback(options)
            if options.key?(:on)
              options[:on] = Array(options[:on])
              options[:if] = [
                ->(o) {
                  !(options[:on] & Array(o.validation_context)).empty?
                },
                *options[:if]
              ]
            end
          end
Register or log in to add new notes.