Sha256: 3b24279082dde8d5c9359a6108cd19d25c5185141d1ea552e66efd637c767a20
Contents?: true
Size: 432 Bytes
Versions: 97
Compression:
Stored size: 432 Bytes
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses # This query class filters participatory process groups given an organization. class OrganizationParticipatoryProcessGroups < Rectify::Query def initialize(organization) @organization = organization end def query Decidim::ParticipatoryProcessGroup.where(organization: @organization) end end end end
Version data entries
97 entries across 97 versions & 2 rubygems