Class: Decidim::Admin::ParticipatorySpacePrivateUserCsvImportForm
- Inherits:
-
Form
- Object
- Decidim::AttributeObject::Form
- Form
- Decidim::Admin::ParticipatorySpacePrivateUserCsvImportForm
- Includes:
- HasBlobFile, HasUploadValidations
- Defined in:
- decidim-admin/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb
Overview
A form object used to upload CSV to batch participatory space private users.
Constant Summary
Constants included from Decidim::AttributeObject::TypeMap
Decidim::AttributeObject::TypeMap::Boolean, Decidim::AttributeObject::TypeMap::Decimal
Instance Attribute Summary
Attributes inherited from Decidim::AttributeObject::Form
Instance Method Summary collapse
Methods included from HasUploadValidations
#attached_uploader, #maximum_avatar_size, #maximum_upload_size
Methods inherited from Decidim::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 Decidim::AttributeObject::Model
#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h
Instance Method Details
#validate_csv ⇒ Object
20 21 22 23 24 25 26 |
# File 'decidim-admin/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb', line 20 def validate_csv return if file.blank? CSV.foreach(blob_path) do |_email, user_name| errors.add(:user_name, :invalid) unless user_name.match?(UserBaseEntity::REGEXP_NAME) end end |