Sha256: 0b8515575dfdfd3c7b37496fd3cc09e8d880f7edc51db6fc9cd04e966d9cc4cd
Contents?: true
Size: 1012 Bytes
Versions: 13
Compression:
Stored size: 1012 Bytes
Contents
# frozen_string_literal: true module Decidim module Accountability module AdminLog # This class holds the logic to present a `Decidim::Accountability::TimelineEntry` # 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 # TimelineEntryPresenter.new(action_log, view_helpers).present class TimelineEntryPresenter < Decidim::Log::BasePresenter private def action_string case action when "create", "delete", "update" "decidim.accountability.admin_log.timeline_entry.#{action}" else super end end def diff_fields_mapping { entry_date: :date, description: :i18n, title: :i18n } end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems