Class: Decidim::Proposals::ApplicationController

Inherits:
Components::BaseController
  • Object
show all
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.

Instance Method Summary collapse

Instance Method Details

#proposal_limitObject



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

Returns:

  • (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

#proposalsObject



26
27
28
# File 'app/controllers/decidim/proposals/application_controller.rb', line 26

def proposals
  Proposal.where(component: current_component)
end