Sha256: 9f0cd6fe2f81ad2865a08b2205b42723b86759148c6f286dcd13bc13a23da1ec
Contents?: true
Size: 907 Bytes
Versions: 12
Compression:
Stored size: 907 Bytes
Contents
# frozen_string_literal: true module Decidim module Blogs module AdminLog # This class holds the logic to present a `Decidim::Blogs::Post` # 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 # PostPresenter.new(action_log, view_helpers).present class PostPresenter < Decidim::Log::BasePresenter private def action_string case action when "create", "delete", "update" "decidim.blogs.admin_log.post.#{action}" else super end end def diff_fields_mapping { title: :i18n, body: :i18n } end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems