Sha256: 22e31e047fa6e3cce4c47dd399908fb70efbbbb40d21ca3c2c700e56d29e5df4
Contents?: true
Size: 490 Bytes
Versions: 8
Compression:
Stored size: 490 Bytes
Contents
# frozen_string_literal: true module Decidim # This query class returns the public Participatory Processes given an # Organization in a meaningful order. class OrganizationPrioritizedParticipatoryProcesses < Rectify::Query def initialize(organization) @organization = organization end def query Rectify::Query.merge( OrganizationParticipatoryProcesses.new(@organization), PrioritizedParticipatoryProcesses.new ).query end end end
Version data entries
8 entries across 8 versions & 1 rubygems