Sha256: 42437699eef0290c94fc460bd5aa0b80ad068b682b579e6d6c1c16747c665590
Contents?: true
Size: 343 Bytes
Versions: 5
Compression:
Stored size: 343 Bytes
Contents
# frozen_string_literal: true module Decidim # This query class filters all processes given an organization. class OrganizationParticipatoryProcesses < Rectify::Query def initialize(organization) @organization = organization end def query ParticipatoryProcess.where(organization: @organization) end end end
Version data entries
5 entries across 5 versions & 2 rubygems