Sha256: 6e75afc2c7e7b0c08020b8944818cbd2bb23575b290b6a755fc038f61435977c
Contents?: true
Size: 943 Bytes
Versions: 12
Compression:
Stored size: 943 Bytes
Contents
# frozen_string_literal: true module Decidim module Templates module AdminLog # This class holds the logic to present a `Decidim::Template` # 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 # TemplatePresenter.new(action_log, view_helpers).present class TemplatePresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :i18n, description: :i18n } end def action_string case action when "create", "update", "delete", "duplicate" "decidim.templates.admin_log.template.#{action}" else super end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems