Sha256: 68bc1dcbeb4111e975173eb462d8c1cfe749e30ed34e8297064e0ddd3e9e7576
Contents?: true
Size: 496 Bytes
Versions: 19
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 < Rectify::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
19 entries across 19 versions & 1 rubygems