Class: Decidim::Proposals::ApplicationController
- Inherits:
-
Components::BaseController
- Object
- Components::BaseController
- Decidim::Proposals::ApplicationController
- Defined in:
- app/controllers/decidim/proposals/application_controller.rb
Overview
This controller is the abstract class from which all other controllers of this engine inherit.
Note that it inherits from ‘Decidim::Components::BaseController`, which override its layout and provide all kinds of useful methods.
Direct Known Subclasses
CollaborativeDraftsController, ProposalVotesController, ProposalsController, VersionsController
Instance Method Summary collapse
Instance Method Details
#proposal_limit ⇒ Object
14 15 16 17 18 |
# File 'app/controllers/decidim/proposals/application_controller.rb', line 14 def proposal_limit return nil if component_settings.proposal_limit.zero? component_settings.proposal_limit end |
#proposal_limit_reached? ⇒ Boolean
20 21 22 23 24 |
# File 'app/controllers/decidim/proposals/application_controller.rb', line 20 def proposal_limit_reached? return false unless proposal_limit proposals.where(author: current_user).count >= proposal_limit end |
#proposals ⇒ Object
26 27 28 |
# File 'app/controllers/decidim/proposals/application_controller.rb', line 26 def proposals Proposal.where(component: current_component) end |