Sha256: 4e909ae141367c2c396b3d324d74112a41811d9c936e531e7643af1fc167d09c
Contents?: true
Size: 945 Bytes
Versions: 18
Compression:
Stored size: 945 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 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 # 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
18 entries across 18 versions & 1 rubygems