Sha256: 7bfacbd6e26dc2b98592562fc39383f59d4e5d11b367670f14a9a451e7e69f68
Contents?: true
Size: 486 Bytes
Versions: 60
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true module Decidim module Conferences module Admin # This module, when injected into a controller, ensures there's a # Conference available and deducts it from the context. module ConferenceContext def self.extended(base) base.class_eval do include Concerns::ConferenceAdmin alias_method :current_conference, :current_participatory_space end end end end end end
Version data entries
60 entries across 60 versions & 1 rubygems