Sha256: 5d52134fb1c46c356a6e819ef5c76d45983e0ca8d888cd380c32635e08f2f7b9
Contents?: true
Size: 846 Bytes
Versions: 12
Compression:
Stored size: 846 Bytes
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::ContextualHelpSection` # for the `AdminLog` log. # # Usage should be automatic and you shouldn't need to call this class # directly, but here's an example: # # action_log = Decidim::ActionLog.last # view_helpers # => this comes from the views # ContextualHelpSectionPresenter.new(action_log, view_helpers).present class ContextualHelpSectionPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { content: :i18n } end def action_string case action when "update" "decidim.admin_log.contextual_help_section.#{action}" else super end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems