Sha256: 6b1f9376ddba1561995fb352227d1d37cbc52f9521e045653ba6508317433502
Contents?: true
Size: 1.33 KB
Versions: 23
Compression:
Stored size: 1.33 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 has_diff? %w(publish unpublish send_to_technical_validation).include?(action) || super end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems