Module: ActiveStorageValidations::Errorable
- Extended by:
- ActiveSupport::Concern
- Included in:
- AspectRatioValidator, AttachedValidator, ContentTypeValidator, DimensionValidator, LimitValidator, ProcessableImageValidator, SizeValidator
- Defined in:
- lib/active_storage_validations/concerns/errorable.rb
Instance Method Summary collapse
- #add_error(record, attribute, error_type, **errors_options) ⇒ Object
- #initialize_error_options(options, file = nil) ⇒ Object
Instance Method Details
#add_error(record, attribute, error_type, **errors_options) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/active_storage_validations/concerns/errorable.rb', line 18 def add_error(record, attribute, error_type, **) type = [:custom_message].presence || error_type return if record.errors.added?(attribute, type) # You can read https://api.rubyonrails.org/classes/ActiveModel/Errors.html#method-i-add # to better understand how Rails model errors work record.errors.add(attribute, type, **) end |
#initialize_error_options(options, file = nil) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/active_storage_validations/concerns/errorable.rb', line 5 def (, file = nil) = %i(with in) = .except(*) = { validator_type: self.class.to_sym, custom_message: ([:message] if [:message].present?), filename: get_filename(file) }.compact .merge() end |