Sha256: b9bc449e0cb12e5620fae6f9f738cf4865474b4a62af0b3ef9c39e199ffb3399
Contents?: true
Size: 1.35 KB
Versions: 77
Compression:
Stored size: 1.35 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 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 # 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
77 entries across 77 versions & 1 rubygems