Sha256: defcd8b78df84c99a8b07789525ef8837381e29d76aa29919aaba57847b1cf1e
Contents?: true
Size: 1 KB
Versions: 10
Compression:
Stored size: 1 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 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 # 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 "invite", "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
10 entries across 10 versions & 1 rubygems