Sha256: 1f4d87b2232ec0bed16bc32631435d53be3398135b31f2b1c953cdf264234c14
Contents?: true
Size: 1.01 KB
Versions: 5
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module StoreModel module CombineErrorsStrategies # +MergeErrorStrategy+ copies errors from the StoreModel::Model to the parent # record (for Rails < 6.1) or marks the attribute invalid (for Rails >= 6.1). class MergeErrorStrategy # Merges errors on +attribute+ from the child model with parent errors. # # @param _attribute [String] name of the validated attribute # @param base_errors [ActiveModel::Errors] errors object of the parent record # @param store_model_errors [ActiveModel::Errors] errors object of the StoreModel::Model # attribute def call(_attribute, base_errors, store_model_errors) if Rails::VERSION::MAJOR < 6 || Rails::VERSION::MAJOR == 6 && Rails::VERSION::MINOR.zero? base_errors.copy!(store_model_errors) else store_model_errors.errors.each do |error| base_errors.add(:configuration, :invalid, message: error.full_message) end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems