Sha256: 71efb7d841ec24808d3957fa3e277cd0389810825e1c54f7335f9176b5489307
Contents?: true
Size: 450 Bytes
Versions: 12
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 < Rectify::Query def initialize(organization) @organization = organization end def query PromotedParticipatoryProcessGroups.new.query.where(organization: @organization) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems