Sha256: 8dfbb1543b14bca5dd914cb43c926b2d463b66ce53eb3a22196129da9afbb522
Contents?: true
Size: 1.32 KB
Versions: 42
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true module Decidim module Initiatives module AdminLog # This class holds the logic to present a `Decidim::Initiative` # 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 # InitiativePresenter.new(action_log, view_helpers).present class InitiativePresenter < Decidim::Log::BasePresenter private def action_string case action when "publish", "unpublish", "update", "send_to_technical_validation" "decidim.initiatives.admin_log.initiative.#{action}" else super end end def diff_fields_mapping { state: :string, published_at: :date, signature_start_date: :date, signature_end_date: :date, description: :i18n, title: :i18n, hashtag: :string } end def i18n_labels_scope "activemodel.attributes.initiatives" end def diff_actions super + %w(publish unpublish send_to_technical_validation) end end end end end
Version data entries
42 entries across 42 versions & 1 rubygems