Class: Decidim::Amendable::Form
- Inherits:
-
Form
- Object
- Decidim::AttributeObject::Form
- Form
- Decidim::Amendable::Form
- Includes:
- TranslatableAttributes
- Defined in:
- app/forms/decidim/amendable/form.rb
Overview
a form object common for amendments
Direct Known Subclasses
CreateForm, EditForm, PromoteForm, PublishForm, RejectForm, ReviewForm
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 TranslatableAttributes
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
#amendable ⇒ Object
15 16 17 |
# File 'app/forms/decidim/amendable/form.rb', line 15 def amendable @amendable ||= amendment&.amendable end |
#amender ⇒ Object
23 24 25 |
# File 'app/forms/decidim/amendable/form.rb', line 23 def amender @amender ||= amendment&.amender end |
#amendment ⇒ Object
11 12 13 |
# File 'app/forms/decidim/amendable/form.rb', line 11 def amendment @amendment ||= Decidim::Amendment.find_by(id:) end |
#emendation ⇒ Object
19 20 21 |
# File 'app/forms/decidim/amendable/form.rb', line 19 def emendation @emendation ||= amendment&.emendation end |