Sha256: 61337ac122aced23dabb53a05ea25ab0efff98a6852ef40dfd4f76eb9cc14c60
Contents?: true
Size: 496 Bytes
Versions: 20
Compression:
Stored size: 496 Bytes
Contents
# frozen_string_literal: true module Decidim module Votings module Votes # A class used to find in person votes with a pending status class PendingInPersonVotes < Decidim::Query # Syntactic sugar to initialize the class and return the queried objects. def self.for new.query end # Finds the in person votes with pending status def query Decidim::Votings::InPersonVote.pending end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems