Class: Decidim::UploadValidationForm
- Inherits:
-
Form
- Object
- AttributeObject::Form
- Form
- Decidim::UploadValidationForm
- Includes:
- HasUploadValidations
- Defined in:
- decidim-core/app/forms/decidim/upload_validation_form.rb
Overview
A form object used to handle upload validations, this is used when user is adding files to dropzone in upload modal.
Defined Under Namespace
Classes: AttachmentContextProxy
Constant Summary
Constants included from AttributeObject::TypeMap
AttributeObject::TypeMap::Boolean, AttributeObject::TypeMap::Decimal
Instance Attribute Summary
Attributes inherited from AttributeObject::Form
Instance Method Summary collapse
-
#attached_to ⇒ Object
This is a “trick” to provide the attachment context (i.e. admin or participant) to the attachment records being validated.
Methods included from HasUploadValidations
#attached_uploader, #maximum_avatar_size, #maximum_upload_size
Methods inherited from AttributeObject::Form
ensure_hash, from_model, from_params, hash_from, infer_model_name, #map_model, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #to_param, #valid?, #with_context
Methods included from AttributeObject::Model
#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h
Instance Method Details
#attached_to ⇒ Object
This is a “trick” to provide the attachment context (i.e. admin or participant) to the attachment records being validated. This is to show the invalid content type / file extension errors with the correct file extensions that may be shown in the help text next to the upload drag’n’drop field.
28 29 30 |
# File 'decidim-core/app/forms/decidim/upload_validation_form.rb', line 28 def attached_to @attached_to ||= AttachmentContextProxy.new(organization, ) end |