Sha256: 6d1c4d9305c0831c538ec6542efb136fe3d0814c608881cce21244a68639ba7b
Contents?: true
Size: 837 Bytes
Versions: 19
Compression:
Stored size: 837 Bytes
Contents
# frozen_string_literal: true module Decidim module Votings module Admin # A class used to find trustees by participatory space. class BallotStyleByVotingCode < Decidim::Query # Syntactic sugar to initialize the class and return the queried objects. # # voting - the voting of the Ballot Style # code - the code of the Ballot Style def self.for(voting, code) new(voting, code).query end # Initializes the class. def initialize(voting, code) @voting = voting @code = code end # Gets the ballot style with the specified code in this voting def query Decidim::Votings::BallotStyle .where(voting: @voting) .find_by(code: @code) end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems