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



21
22
23
24
25
# File 'decidim-admin/app/forms/decidim/admin/selective_newsletter_form.rb', line 21

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

#scope_idsObject

Make sure the empty scope is not passed because then some logic could assume erroneously that some scope is selected.



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

def scope_ids
  super.select(&:presence)
end