Sha256: a6b52d3effbf700c421aeb049439bd5174bfb0d35ae7f5a58adef6d03715324e
Contents?: true
Size: 1.03 KB
Versions: 13
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module AdminLog # This class holds the logic to present a # `Decidim::ParticipatoryProcessType` # for the `AdminLog` log. # # Usage should be automatic and you should not need to call this class # directly, but here is an example: # # action_log = Decidim::ActionLog.last # view_helpers # => this comes from the views # ParticipatoryProcessTypePresenter.new(action_log, view_helpers).present class ParticipatoryProcessTypePresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { title: :i18n } end def action_string case action when "create", "update" "decidim.admin_log.participatory_process_type.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.participatory_process_type" end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems