Sha256: 263266e86293159a925a04af3cd2a159752e5929cec6bfd74875645fc9402003
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 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 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 # DebatePresenter.new(action_log, view_helpers).present class DebatePresenter < Decidim::Log::BasePresenter private 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
3 entries across 3 versions & 1 rubygems