Class: Decidim::Votings::CurrentVoting

Inherits:
Object
  • Object
show all
Defined in:
decidim-elections/app/constraints/decidim/votings/current_voting.rb

Overview

This class infers the current voting we are scoped to by looking at the request parameters and the organization in the request environment, and injects it into the environment.

Instance Method Summary collapse

Instance Method Details

#matches?(request) ⇒ Boolean

Public: Matches the request against an voting and injects it

into the environment.

request - The request that holds the voting relevant

information.

Returns a true if the request matched, false otherwise

Returns:

  • (Boolean)


16
17
18
19
20
21
22
23
# File 'decidim-elections/app/constraints/decidim/votings/current_voting.rb', line 16

def matches?(request)
  env = request.env

  @organization = env["decidim.current_organization"]
  return false unless @organization

  current_voting(env, request.params).present?
end