Sha256: 042dd1decb5ea1947d1670283ddbc5dd0f132516c10d5ad9082ba9fd9accfb77
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module AdminLog # This class holds the logic to present a `Decidim::ParticipatoryProcess` # 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 # ParticipatoryProcessGroupPresenter.new(action_log, view_helpers).present class ParticipatoryProcessGroupPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :i18n, description: :i18n } end def action_string case action when "create", "publish", "unpublish", "update" "decidim.admin_log.participatory_process_group.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.participatory_process_group" end def diff_actions super + %w(unpublish) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems