Sha256: a6dcda752314de64c1ed4de25a85bcff3e249271bf1a87e5145052352ebf56f3
Contents?: true
Size: 908 Bytes
Versions: 13
Compression:
Stored size: 908 Bytes
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::Area` # 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 # AreaPresenter.new(action_log, view_helpers).present class AreaPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :i18n, area_type_id: :area_type } end def action_string case action when "create", "delete", "update" "decidim.admin_log.area.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.area" end end end end
Version data entries
13 entries across 13 versions & 1 rubygems