Sha256: 91f572292a9d2ae31a669a2541bf2b1bf534e3b2da3605d58c5c2603397b7305
Contents?: true
Size: 1.09 KB
Versions: 13
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module AdminLog # This class holds the logic to present a `Decidim::Step` # 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 # StepPresenter.new(action_log, view_helpers).present class StepPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { cta_path: :string, cta_text: :i18n, description: :i18n, title: :i18n } end def action_string case action when "activate", "create", "delete", "update" "decidim.admin_log.participatory_process_step.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.participatory_process_step" end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems