Sha256: e4d7c79f86c8ccad4b99ee933b9c7499969a1de46d9aa51650ea1b130f29e0f9
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
# frozen_string_literal: true module Decidim module Debates module AdminLog # This class holds the logic to present a `Decidim::Debate` # 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 # DebatePresenter.new(action_log, view_helpers).present class DebatePresenter < Decidim::Log::BasePresenter private def resource_presenter @resource_presenter ||= Decidim::Debates::Log::ResourcePresenter.new(action_log.resource, h, action_log.extra["resource"]) end def diff_fields_mapping { description: "Decidim::Debates::AdminLog::ValueTypes::DebateTitleDescriptionPresenter", end_date: :date, information_updates: :i18n, instructions: :i18n, start_date: :date, title: "Decidim::Debates::AdminLog::ValueTypes::DebateTitleDescriptionPresenter" } end def i18n_labels_scope "activemodel.attributes.debate" end def action_string case action when "create", "update" "decidim.debates.admin_log.debate.#{action}" else super end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems