Sha256: 04a89eb21aad4c9237854f08c1b3589bf51baf27f13a1a3351693a36621d03b5
Contents?: true
Size: 378 Bytes
Versions: 48
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true module Decidim module Conferences # This query class filters all conferences given an organization. class OrganizationConferences < Rectify::Query def initialize(organization) @organization = organization end def query Decidim::Conference.where(organization: @organization) end end end end
Version data entries
48 entries across 48 versions & 1 rubygems