Sha256: d0a600e00656a2c4f8b6a04f42fb555634459c7a506a1cbeb13d6a523ba3876e
Contents?: true
Size: 1.43 KB
Versions: 15
Compression:
Stored size: 1.43 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 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 # ParticipatoryProcessGroupPresenter.new(action_log, view_helpers).present class ParticipatoryProcessGroupPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { description: :i18n, developer_group: :i18n, hashtag: :string, group_url: :string, local_area: :i18n, meta_scope: :i18n, title: :i18n, participatory_scope: :i18n, participatory_structure: :i18n, target: :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
15 entries across 15 versions & 1 rubygems