Class: Decidim::Admin::SelectiveNewsletterForm

Inherits:
Form show all
Defined in:
decidim-admin/app/forms/decidim/admin/selective_newsletter_form.rb

Overview

A form object to select which users will be sent the selective newsletters

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

#context

Instance Method Summary collapse

Methods inherited from Decidim::AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, 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

#map_model(newsletter) ⇒ Object



25
26
27
28
29
30
31
# File 'decidim-admin/app/forms/decidim/admin/selective_newsletter_form.rb', line 25

def map_model(newsletter)
  self.participatory_space_types = Decidim.participatory_space_manifests.map do |manifest|
    SelectiveNewsletterParticipatorySpaceTypeForm.from_model(manifest:)
  end

  self.verification_types = newsletter.organization.available_authorizations
end