Module: Decidim::Initiatives::CreateInitiativeHelper
- Defined in:
- decidim-initiatives/app/helpers/decidim/initiatives/create_initiative_helper.rb
Overview
Helper methods for the create initiative wizard.
Instance Method Summary collapse
Instance Method Details
#signature_type_options(initiative_form) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'decidim-initiatives/app/helpers/decidim/initiatives/create_initiative_helper.rb', line 7 def (initiative_form) return unless initiative_form.signature_type_updatable? type = ::Decidim::InitiativesType.find(initiative_form.type_id) allowed_signatures = type.allowed_signature_types_for_initiatives case allowed_signatures when %w(online) when %w(offline) else end end |