Sha256: b94b220d028897064ea2935b9cf38556d0142da029a1cfcc3e4f70efc863fc31
Contents?: true
Size: 475 Bytes
Versions: 12
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true module Decidim module Consultations # This query class filters all consultations given an organization. class OrganizationActiveConsultations < Decidim::Query def self.for(organization) new(organization).query end def initialize(organization) @organization = organization end def query Decidim::Consultation.where(organization: @organization).active end end end end
Version data entries
12 entries across 12 versions & 1 rubygems