Class: Decidim::Amendable::Form

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

Overview

a form object common for amendments

Instance Method Summary collapse

Methods included from TranslatableAttributes

#default_locale?

Instance Method Details

#amendableObject



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

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

#amenderObject



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

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

#amendmentObject



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

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

#emendationObject



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

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