Sha256: 9ecd7a3e3504481a676bd873c1bec5a891ac84885d557b2cc04c0de436e9cb88
Contents?: true
Size: 445 Bytes
Versions: 5
Compression:
Stored size: 445 Bytes
Contents
# frozen_string_literal: true module Decidim # This query class filters published processes given an organization. class OrganizationPublishedParticipatoryProcesses < Rectify::Query def initialize(organization) @organization = organization end def query Rectify::Query.merge( OrganizationParticipatoryProcesses.new(@organization), PublishedParticipatoryProcesses.new ).query end end end
Version data entries
5 entries across 5 versions & 2 rubygems