Module: Decidim::Votings::NeedsVoting
- Included in:
- VotingsController
- Defined in:
- decidim-elections/app/controllers/concerns/decidim/votings/needs_voting.rb
Overview
This module, when injected into a controller, ensures there is a voting available and deducts it from the context.
Defined Under Namespace
Modules: InstanceMethods
Class Method Summary collapse
Class Method Details
.enhance_controller(instance_or_module) ⇒ Object
8 9 10 11 12 |
# File 'decidim-elections/app/controllers/concerns/decidim/votings/needs_voting.rb', line 8 def self.enhance_controller(instance_or_module) instance_or_module.class_eval do helper_method :current_participatory_space end end |
.included(base) ⇒ Object
14 15 16 17 18 |
# File 'decidim-elections/app/controllers/concerns/decidim/votings/needs_voting.rb', line 14 def self.included(base) base.include Decidim::NeedsOrganization, InstanceMethods enhance_controller(base) end |