Sha256: 5895c3c508e4a83332b561e7cc19560f22cee4a906d0bc4a1022ff4bf9cc6bc6
Contents?: true
Size: 442 Bytes
Versions: 9
Compression:
Stored size: 442 Bytes
Contents
# frozen_string_literal: true module Decidim module NavigationMaps # This query finds the published blueprints for and organization class OrganizationBlueprints < Rectify::Query def initialize(organization) @organization = organization end def query Decidim::NavigationMaps::Blueprint.where(organization: @organization) end private attr_reader :organization end end end
Version data entries
9 entries across 9 versions & 1 rubygems