Sha256: 9302afc3d953fe1a4593d51b24b26015401c4873a3130c182222350f61e1fda2
Contents?: true
Size: 1.49 KB
Versions: 18
Compression:
Stored size: 1.49 KB
Contents
# frozen_string_literal: true module Decidim module Proposals module AdminLog # This class holds the logic to present a `Decidim::Proposals::ValuationAssignment` # 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 # ValuationAssignmentPresenter.new(action_log, view_helpers).present class ValuationAssignmentPresenter < Decidim::Log::BasePresenter private def resource_presenter @resource_presenter ||= Decidim::Proposals::Log::ValuationAssignmentPresenter.new(action_log.resource, h, action_log.extra["resource"]) end def diff_fields_mapping { valuator_role_id: "Decidim::Proposals::AdminLog::ValueTypes::ValuatorRoleUserPresenter" } end def action_string case action when "create", "delete" "decidim.proposals.admin_log.valuation_assignment.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.valuation_assignment.admin_log" end def diff_actions super + %w(create delete) end def i18n_params super.merge(proposal_title: h.translated_attribute(action_log.extra["proposal_title"])) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems