Sha256: 7b7dce1666219dfd68cf35e803e7fb54ecd22966f4e7a371520a2765758a6512
Contents?: true
Size: 1.02 KB
Versions: 13
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::ParticipatorySpacePrivateUserPresenter` # 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 # ParticipatorySpacePrivateUserPresenter.new(action_log, view_helpers).present class ParticipatorySpacePrivateUserPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :string, email: :string } end def action_string case action when "create", "create_via_csv", "delete" "decidim.admin_log.participatory_space_private_user.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.participatory_space_private_user" end end end end
Version data entries
13 entries across 13 versions & 1 rubygems