Sha256: 9b016e6d46ceb67ba319b8d90f96bdcc68716e688e0105b75fcb39eba31bc9b5
Contents?: true
Size: 943 Bytes
Versions: 13
Compression:
Stored size: 943 Bytes
Contents
# frozen_string_literal: true module Decidim module Pages module AdminLog # This class holds the logic to present a `Decidim::Page` # 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 # PagePresenter.new(action_log, view_helpers).present class PagePresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { body: :i18n } end def action_string case action when "update" "decidim.admin_log.page.#{action}" else super end end def i18n_labels_scope "decidim.pages.admin.models.components" end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems