Sha256: 8aeb2b66c4a8b627902949bbeae11f7f69f7b0b9dd6528a35a67d543197cafc1
Contents?: true
Size: 1.36 KB
Versions: 13
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module Decidim module AdminLog # This class holds the logic to present a `Decidim::Newsletter` # 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 # NewsletterPresenter.new(action_log, view_helpers).present class NewsletterPresenter < Decidim::Log::BasePresenter private def diff_fields_mapping { body: :i18n, subject: :i18n } end def action_string case action when "create", "delete", "deliver", "update" "decidim.admin_log.newsletter.#{action}" else super end end def i18n_labels_scope "activemodel.attributes.newsletter" end # Private: Caches the object that will be responsible of presenting the newsletter. # Overwrites the method so that we can use a custom presenter to show the correct # path for the newsletter. # # Returns an object that responds to `present`. def resource_presenter @resource_presenter ||= Decidim::AdminLog::NewsletterResourcePresenter.new(action_log.resource, h, action_log.extra["resource"]) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems