Sha256: bbcd67db1dc190f2c0fb3d5475b3e3d69acd19d8112c64ab037e698fe4eefd5b
Contents?: true
Size: 445 Bytes
Versions: 25
Compression:
Stored size: 445 Bytes
Contents
# frozen_string_literal: true module Decidim module Votings # This query class filters published votings given an organization. class OrganizationPublishedVotings < Rectify::Query def initialize(organization) @organization = organization end def query Rectify::Query.merge( OrganizationVotings.new(@organization), PublishedVotings.new ).query end end end end
Version data entries
25 entries across 25 versions & 1 rubygems