Sha256: 53b9ddbad6a4c47c8bfd8d4a2555d118bcc80193d67f11ffe14b6a672bf8c701
Contents?: true
Size: 470 Bytes
Versions: 19
Compression:
Stored size: 470 Bytes
Contents
# frozen_string_literal: true module Decidim module Elections module Admin # A class used to find actions with a pending status class PendingActions < Decidim::Query # Syntactic sugar to initialize the class and return the queried objects. def self.for new.query end # Finds the votes with pending status def query Decidim::Elections::Action.pending end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems