Sha256: ee83efcb79e75833848a4ecc65e96fed0696e5b0691169f8d8eb7a71955e0998
Contents?: true
Size: 734 Bytes
Versions: 12
Compression:
Stored size: 734 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 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 # 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
12 entries across 12 versions & 1 rubygems