Sha256: e27853f330dd1c2897801461a57eb6601407f6164477db4305fc94987a9d6732
Contents?: true
Size: 465 Bytes
Versions: 63
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true module Decidim module Consultations # This query class filters all questions given an organization. class OrganizationQuestions < Rectify::Query def self.for(organization) new(organization).query end def initialize(organization) @organization = organization end def query Decidim::Consultations::Question.where(organization: @organization) end end end end
Version data entries
63 entries across 63 versions & 1 rubygems