Sha256: 133071de7b1f6121580e7a5b7210ab42c243912a080135d7f23805013bb495d9
Contents?: true
Size: 916 Bytes
Versions: 12
Compression:
Stored size: 916 Bytes
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::AttachmentCollection` # 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 # AttachmentCollectionPresenter.new(action_log, view_helpers).present class AttachmentCollectionPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { name: :i18n, description: :i18n, weight: :integer } end def action_string case action when "create", "delete", "update" "decidim.admin_log.attachment_collection.#{action}" else super end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems