Sha256: 955c9b908f93b66c4700f9371c5ab9c302ff38ab3192338f3b1bfffad4f1e2c2
Contents?: true
Size: 652 Bytes
Versions: 27
Compression:
Stored size: 652 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim module Assemblies module Admin module Concerns # This concern is meant to be included in all controllers that are scoped # into an assembly's admin panel. It will override the layout so it shows # the sidebar, preload the assembly, etc. module AssemblyAdmin extend ActiveSupport::Concern included do include NeedsAssembly layout "decidim/admin/assembly" alias_method :current_participatory_space, :current_assembly end end end end end end
Version data entries
27 entries across 27 versions & 2 rubygems