Class: Decidim::Amendable::Form

Inherits:
Form show all
Includes:
TranslatableAttributes
Defined in:
decidim-core/app/forms/decidim/amendable/form.rb

Overview

a form object common for amendments

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 included from TranslatableAttributes

#default_locale?

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

#amendableObject



15
16
17
# File 'decidim-core/app/forms/decidim/amendable/form.rb', line 15

def amendable
  @amendable ||= amendment&.amendable
end

#amenderObject



23
24
25
# File 'decidim-core/app/forms/decidim/amendable/form.rb', line 23

def amender
  @amender ||= amendment&.amender
end

#amendmentObject



11
12
13
# File 'decidim-core/app/forms/decidim/amendable/form.rb', line 11

def amendment
  @amendment ||= Decidim::Amendment.find_by(id:)
end

#emendationObject



19
20
21
# File 'decidim-core/app/forms/decidim/amendable/form.rb', line 19

def emendation
  @emendation ||= amendment&.emendation
end