Sha256: 8a30f1081938fe7342fcf3a94881d7bc77251ca3f0920fdbf924bbab25f931d7
Contents?: true
Size: 456 Bytes
Versions: 52
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim # A controller concern to enable withawing the controller resources. Only # affects the UI, so the actual logic to withdraw the resource will still need # to be implemented. module Withdrawable extend ActiveSupport::Concern included do helper_method :withdrawable_controller? def withdrawable_controller? true end end end end
Version data entries
52 entries across 52 versions & 1 rubygems