Sha256: 5a76b2d7127c71c4b9a9c80a362858834c09c21edf0aafebe824a885771e3615
Contents?: true
Size: 459 Bytes
Versions: 58
Compression:
Stored size: 459 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim # This module provides capability for storing conditional snippets during the # page view that need to be displayed in different part of the view than where # they are registered at. module NeedsSnippets extend ActiveSupport::Concern included do helper_method :snippets end def snippets @snippets ||= Decidim::Snippets.new end end end
Version data entries
58 entries across 58 versions & 1 rubygems