Sha256: bf5fa3f4b939155bd0f0ad26501298e12a1c0e7a83c93003ff8d12a6ee5ed328
Contents?: true
Size: 1000 Bytes
Versions: 77
Compression:
Stored size: 1000 Bytes
Contents
# frozen_string_literal: true module Decidim module Proposals module AdminLog # This class holds the logic to present a `Decidim::Proposals::ProposalNote` # 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 # ProposalNotePresenter.new(action_log, view_helpers).present class ProposalNotePresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { body: :string } end def action_string case action when "create" "decidim.proposals.admin_log.proposal_note.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.proposal_note" end end end end end
Version data entries
77 entries across 77 versions & 1 rubygems