Sha256: 3f6e2a7386ad955d977023ab3aa55c9385d69c77d96d99bf1df6b7430ecaf7be
Contents?: true
Size: 393 Bytes
Versions: 25
Compression:
Stored size: 393 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).order(weight: :asc) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems