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