Sha256: 053d25534dd9fef9e0b551820e5a594af5ee00a385cd33b5c365d24d9ed3f43a
Contents?: true
Size: 736 Bytes
Versions: 18
Compression:
Stored size: 736 Bytes
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::Attachment` # 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 # AttachmentPresenter.new(action_log, view_helpers).present class AttachmentPresenter < Decidim::Log::BasePresenter private def action_string case action when "create", "delete", "update" "decidim.admin_log.attachment.#{action}" else super end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems