Sha256: daf99801d886ab5078f0e06b7c9c837035aeac4e92bbd801e736e0f8ba3807e8
Contents?: true
Size: 373 Bytes
Versions: 72
Compression:
Stored size: 373 Bytes
Contents
# frozen_string_literal: true module Decidim module Assemblies # This query class filters all assemblies given an organization. class OrganizationAssemblies < Rectify::Query def initialize(organization) @organization = organization end def query Decidim::Assembly.where(organization: @organization) end end end end
Version data entries
72 entries across 72 versions & 2 rubygems