Sha256: 22205a12a98214e6c8b8ab0fb4e79cbd32a895566b6dd1eb0c209090ff9020f2
Contents?: true
Size: 1.23 KB
Versions: 13
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true module Decidim module Accountability module AdminLog # This class holds the logic to present a `Decidim::Accountability::Result` # 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 # ResultPresenter.new(action_log, view_helpers).present class ResultPresenter < Decidim::Log::BasePresenter private def action_string case action when "create", "delete", "update" "decidim.accountability.admin_log.result.#{action}" else super end end def diff_fields_mapping { start_date: :date, end_date: :date, description: :i18n, title: :i18n, decidim_scope_id: :scope, parent_id: "Decidim::Accountability::AdminLog::ValueTypes::ParentPresenter", progress: :percentage } end def i18n_labels_scope "activemodel.attributes.result" end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems