Sha256: ec2ffd95178a8e0ce12e23766ab3e06d04b2a69ebed0985dc99ba76c408350b0
Contents?: true
Size: 450 Bytes
Versions: 25
Compression:
Stored size: 450 Bytes
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses # This query class filters participatory process groups given an organization. class OrganizationPromotedParticipatoryProcessGroups < Decidim::Query def initialize(organization) @organization = organization end def query PromotedParticipatoryProcessGroups.new.query.where(organization: @organization) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems